Sunday, March 13, 2011

PHP - hide DEPRECATED warning messages

To turn off the DEPRECATED warning messages in a PHP (5.3+) script, include the following line:

error_reporting(E_ALL & ~E_DEPRECATED);

Check: http://php.net/manual/en/function.error-reporting.php

G.

Wednesday, March 9, 2011

RegExp

Just to leave here a very useful site regarding regular expressions:

http://gskinner.com/RegExr/

Surf there and check it ;)