3
votes
The best PHP editor for Vista
I'm a big fan of Zend Studio... its designed for PHP and I just can't live without the IDE features. Alternatives are ActiveState's …
2
votes
PHP - RSS builder
I would use simpleXML to create the required structure and export the XML. Then I'd cache it to disk with file_put_contents().
…
1
vote
PHP/mySQL - regular recalcuation of benchmark values as new users submit their data
What you're considering could be done in a number of ways.
You could setup a trigger in your DB to recalculate the values whenever a new record is updated. You could store the cod …
1
vote
How to create a fast PHP library ?
You could use spl_autoload_register() or __autoload() to create whatever rules you need for including the files that you need for classes, however autoload introduces its own performance overheads. …
2
votes
PHP simplexml problem
I believe its equivalent to the __toString() method on the object, so
echo $description[0];
Should display it, or you can cast it;
$str = (string) …
1
vote
How do you copy a PHP object into a different object type
A php object isn't a whole lot different to an array, and since all PHP 4 object variables are public, you can do some messy stuff like this:
function clone($object, $class)
{
…
4
votes
PHP: Use Pecl/Pear, or build my own systems?
Save on development time by developing with the pear libraries, and provide the libraries bundled in what you distribute (though you'll have to make sure it obeys licensing requirements)
I …
0
votes
PHP Optimization Tips
prefer require and include over thier _once counterparts
EDIT: added at request of commenter: because require_once requires checks to see if the file has been included before. Benchmark it …
-1
votes
1
vote
PHP Optimization Tips
the mysql extension is faster than the mysqli extention, which is (sometimes) faster than PDO.
If you use mysqli in conjunction with …
0
votes
PHP Optimization Tips
foreach is faster than while(list()=each()) when you're not modifying values, if you're modifying the hash, while(list()=each()) is faster
…
6
votes
PHP Optimization Tips
I realise this doesn't answer the question - but I happen to think its worth saying.
Nearly all of these 'optimizations' are premature, and should probably not be implemented at the expense …
0
votes
PHP Optimization Tips
use the string handling functions instead of preg_ and ereg_ functions if you can.
…
1
vote
PHP: Storing ‘objects’ inside the $_SESSION.
You'll have to remember that resource types (such as db connections or file pointers) wont persist between page loads, and you'll need to invisibly re-create these.
Also consider the size …
0
votes
What is the best way to profile PHP code
XDebug is nice but its not that easy to use or setup IMO.
The profiler built into Zend Studio is very easy to use. You just hit a button on a browser toolbar and BAM you have yo …
