preg_match return string php code example
Example 1: preg_match in php
<?php
//Syntex : int preg_match( $pattern, $input, $matches, $flags, $offset)
// Declare a variable and initialize it
$str = "Check For Testing.";
// case-Insensitive search for the word "Check"
if (preg_match("/\bCheck\b/i", $str, $match))
echo "Matched!";
else
echo "not matched";
// Output : Matched
?>
Example 2: preg_match in php
<?php
function_name('/pattern/',subject);
?>