Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

pregmatch


<?php
// The "i" after the pattern delimiter indicates a case-insensitive search
if (preg_match("/php/i", "PHP is the web scripting language of choice.")) {
    echo "A match was found.";
} else {
    echo "A match was not found.";
}
?>

Source by www.php.net #
 
PREVIOUS NEXT
Tagged: #pregmatch
ADD COMMENT
Topic
Name
9+7 =