preg_replace_callback_arrayPerform a regular expression search and replace using callbacks Beschreibung
mixed preg_replace_callback_array
( array
$patterns_and_callbacks
, mixed $subject
[, int $limit = -1
[, int &$count
]] )The behavior of this function is similar to preg_replace_callback, except that callbacks are executed on a per-pattern basis. Parameter-Liste
Rückgabewerte
preg_replace_callback_array returns an array if the
If matches are found, the new subject will be returned, otherwise
Beispiele
Beispiel #1 preg_replace_callback_array example
<?phpDas oben gezeigte Beispiel erzeugt folgende Ausgabe: 6 matches for "a" found 3 matches for "b" found Siehe auch
|