preg_match match in php example array
Example 1: preg_match in php
<?php
$my_text="I Love Regular Expressions";
$my_array = preg_split("/ /", $my_text);
print_r($my_array );
?>
Example 2: preg_match in php
<?php
function_name('/pattern/',subject);
?>