function add($matches){
print_r($matches);
return $matches[2]+1;
}
echo preg_replace_callback('/(1)5(7)/', "add", "777157777177");
print_r($matches);
return $matches[2]+1;
}
echo preg_replace_callback('/(1)5(7)/', "add", "777157777177");
Array
(
[0] => 157
[1] => 1
[2] => 7
)
7778777177
No comments:
Post a Comment