Preg_replace_callback_array()函数在PHP 7中表示一个正则表达式,并替换了回调函数的使用。此函数返回一个字符串或字符串数组,以匹配一组正则表达式,并使用回调函数进行替换。
preg_replace_callback_array(patterns, input, limit, count)
演示
<html> <head> <title> PHP 7 Featuretutorialpoint:</title> </head> <body> <?php $subject = 'AaaaaaaBbbbCccc'; preg_replace_callback_array ( [ '~[a]+~i' => function ($match) { echo strlen($match[0]), ' number of "a" found', PHP_EOL; }, '~[b]+~i' => function ($match) { echo strlen($match[0]), ' number of "b" found', PHP_EOL; }, '~[c]+~i' => function ($match) { echo strlen($match[0]), ' number of "c" found', PHP_EOL; } ], $subject ); ?> </body> </html>
上述程序代码的输出为 −
7 number of "a" found 4 number of "b" found 5 number of "c" found
以上是PHP 7中的preg_replace_callback_array()函数的详细内容。更多信息请关注PHP中文网其他相关文章!