Sunday, 1 May 2016

preg_replace_callback

function add($matches){
    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