La fonction Preg_replace_callback_array() représente une expression régulière en PHP 7 et remplace l'utilisation de fonctions de rappel. Cette fonction renvoie une chaîne ou un tableau de chaînes pour correspondre à un ensemble d'expressions régulières et les remplace à l'aide d'une fonction de rappel.
preg_replace_callback_array(patterns, input, limit, count)
Démonstration
<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>
La sortie du code de programme ci-dessus est −
7 number of "a" found 4 number of "b" found 5 number of "c" found
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!