Search Results

3
votes

What is your preferred tool stack for PHP development in the Windows Environment?

For source control in subversion I would only recommend tortoisesvn for small projects. When you start dealing with large repositories, SmartSVN is much faster and easier to use, it integrates with …
1
vote

What are the benefits of OO programming? Will it help me write better code?

I would say there are two primary benefits: Encapsulation: code in libraries that shouldn't be called from outside the library can be hidden, preventing misuse, and easing changes to …
4
votes

PHP: close a connection early

The following page contains instructions on how to close the connection without ending the PHP script: http://php. …
1
vote

How can I save email attachments to the server in PHP?

Zend framework contains Zend_Mail, which should make reading mail messages much easier, and Zend_Mime, which I believe can parse a multipart mime message into a sensible data structure. …
3
votes

PHP utf8 problem

If your PHP script file has an ANSI encoding, instead of UTF-8, then on the byte-level those norwegian characters will be different from what they would be if they were encoded in UTF-8. Since PHP …
1
vote

PHP Script Compression/”Compilation” Tools

Out of curiosity, why do you want to do this? If it's for performance, don't bother. Just use regular includes instead of auto-loading, and it will have much of the same effect. For performance you …
0
votes

How do I convert Word smart quotes and em dashes in a string?

You have to be sure your database connection is configured to accept and provide UTF-8 from and to the client (otherwise it will convert to the "default", which is usually latin1). In pract …
0
votes

In PHP, is there a way to capture the output of a PHP file into a variable without using output buffering?

Do a curl request to the php page, essentially pretending to be the browser. …
38
votes

Worst PHP practice found in your experience?

Using the dot operator to stuff variables into queries, without any form of escaping or variable binding. This still happens a lot. Using extract() liberally to have easy access to v …
4
votes

Will PHP continue to make drastic changes with major version releases?

The history of PHP is that they don't implement breaking changes without good reason. I've always seen the benefits of the work I had to do porting to new PHP versions. So, I would actually conside …
4
votes

PHP Framework Decision - Analysis paralysis!

A problem you'll experience with web 2.0 is that the fancier your app becomes, the more you will need to code in javascript, and the more you code in javascript, the more the PHP framework will hav …
15
votes

Zend Framework slow as molasses - need to speed the website up. Any ideas?

The only way to know for sure where your bottlenecks are is doing deep profiling. I use xdebug, combined with kcachegrind (part of kde for windows). It generates full call traces for every …
2
votes

Using PHP to output XML

file_put_contents is the easiest way of dumping a string to file. …
1
vote

IE and its problem (No Firebug-like Debug tool)

For an equivalent to the firebug net panel, you can use the newly released msfast: http://msfast.myspace.com/ …
1
vote

Strategy for supporting unicode & multi language in PHP5

For translations, you can either use a framework, or just roll your own library. You can store translations in csv files and use PHP's fgetcsv() to parse it. CSV files can be edited with any spread …

1 2 next
15 30 50 per page