Old regular expression function in PHP that is now DEPRECATED in favour of preg_match()
I have written following PHP code: $input="menu=1&type=0&"; print $input."<hr>".ereg_replace('/&/…
php deprecated eregSince POSIX regular expressions (ereg) are deprecated since PHP 5.3.0, I'd like to know an easy way to convert the old …
php preg-replace preg-match pcre eregPossible Duplicate: How can I convert ereg expressions to preg in PHP? My contact form is othervise working but I …
php forms deprecated eregi eregPossible Duplicate: Converting ereg expressions to preg <?php $searchtag = "google"; $link = "http://images.google.com/images?hl=de&…
php regex preg-match eregI had that test that worked fine : if (ereg("([0-9]{2})[-./]([0-9]{2})[-./]([0-9]{4})[ ]([0-9]{2}):([0-9]{2}):([0-9]{2})", $dateToTest, $tab) == false) …
php regex preg-match eregI'm working on string and I wonder which way is best to check if string contains only specified character set: @ ∆ …
php string preg-match ereg