1
vote
Mechanisms for tracking DB schema changes
K. Scott Allen has a decent article or two on schema versioning, which uses the incremental update scripts/migrations concept referenced in other answers here; see …
0
votes
6
votes
Which is faster, python webpages or php webpages?
There's no point in attempting to convince your employer to port from PHP to Python, especially not for an existing system, which is what I think you implied in your question.
The reason fo …
1
vote
What are the best practices for avoid xss attacks in a PHP site
Don't trust user input
Escape all free-text output
Don't use magic_quotes; see if there's a DBMS-specfic variant, or use PDO
Consider using HTTP-only cookies where …
0
votes
Would performance suffer using autoload in php and searching for the class file?
I tend to use a simple approach where __autoload() consults a hash mapping class names to relative paths, which is contained in a file that's regenerated using a simple script which itself performs …
2
votes
PHP regex to remove multiple ?-marks
preg_replace( '{\\?+}', '?', $text );
should do it.
You need to escape the question mark itself with a backslash, and then escape the backslash itself with another back …
1
vote
PHP: Best way to extract text within parenthesis?
Use a regular expression:
if( preg_match( '!\(([^\)]+)\)!', $text, $match ) )
$text = $match[1];
…
1
vote
PHP: destructor vs register_shutdown_function
Based on the principle that you should finish what you start, I'd say the destructor is the correct place …
2
votes
Is there a guide to path referencing in PHP?
I tend to use dirname to get the current path and then use this as a base to calculate all future path names.
For ex …
1
vote
What IDE do you use to develop PHP? Sorta sick of Zend.
I don't use a full-blown IDE, but I have used Komodo Edit in the past, and it's not a bad editor.
…
4
votes
How can I check if form input is numeric in PHP?
You should probably explain what you mean by "numeric" - integral, floating point, exponential notation etc? is_n …
2
votes
PHP memcache design patterns
One point to remember with object caching is that it's just that - a cache of objects/complex structures. A lot of people make the mistake of hitting their caches for straightforward, efficient que …
3
votes
Which is faster: in_array() or a bunch of expressions in PHP?
Note that if you're looking to replace a bunch of !== statements, you should pass the third parameter to …
1
vote
PHP mySQL - When is the best time to disconnect from the database?
Using a lazy connection is probably a good idea, since you may not need the database connection at all for some script executions.
On the other hand, once it's open, leave it open, and eith …
1
vote
php script for member approval by administrator
Introduce an "approved" column into the user table which indicates whether or not the account is approved
Provide an interface for administrators to view a list of such accounts and …
