preg_match('/(hello) (world)/', 'hello world!', $matches);
print_r($matches);
// output
// Array
// (
// [0] => hello world
// [1] => hello
// [2] => world
// )
preg_match('/world/', 'hello world!', $matches);
print_r($matches);
// output
// Array
// (
// [0] => world
// )
preg_match('/abc/', 'hello world!', $matches);
print_r($matches);
// output
// Array
// (
// )
Comments
Post a Comment