preg_replace_callback
(PHP 4 >= 4.0.5, PHP 5)
preg_replace_callback --
正規表現検索を行い、コールバック関数を使用して置換を行う
説明
mixed
preg_replace_callback ( mixed pattern, callback callback, mixed subject [, int limit [, int &count]] )
この関数の動作は、ほぼ preg_replace() と同じですが、
replacement の代わりに
callback を指定するところが異なります。
このコールバック関数は、検索対象文字列でマッチした要素の配列が指定されて
コールされます。このコールバック関数は、置換後の文字列を返す必要があります。
その他のパラメータについては preg_replace()
を参照ください。
例 1. preg_replace_callback() の例
<?php // this text was used in 2002 // we want to get this up to date for 2003 $text = "April fools day is 04/01/2002\n"; $text.= "Last christmas was 12/24/2001\n"; // the callback function function next_year($matches) { // as usual: $matches[0] is the complete match // $matches[1] the match for the first subpattern // enclosed in '(...)' and so on return $matches[1].($matches[2]+1); }
echo preg_replace_callback( "|(\d{2}/\d{2}/)(\d{4})|", "next_year", $text);
// result is: // April fools day is 04/01/2003 // Last christmas was 12/24/2002 ?>
|
|
しばしば、1カ所だけで
preg_replace_callback()用の
callback関数が必要となることがあります。
この場合、create_function()を使用して、
preg_replace_callback() をコールする際
に使用するコールバック関数として匿名の関数を宣言することができます。
このようにすることにより、コールに関するすべての情報を 1 ヶ所に集め、
他の場所で使用されないコールバック関数名で関数の名前空間を
汚染しないようにすることができます。
例 2.
preg_replace_callback() と
create_function()
<?php /* a unix-style command line filter to convert uppercase * letters at the beginning of paragraphs to lowercase */ $fp = fopen("php://stdin", "r") or die("can't read stdin"); while (!feof($fp)) { $line = fgets($fp); $line = preg_replace_callback( '|<p>\s*\w|', create_function( // single quotes are essential here, // or alternative escape all $ as \$ '$matches', 'return strtolower($matches[0]);' ), $line ); echo $line; } fclose($fp); ?>
|
|
注意:
count 引数は PHP 5.1.0 以降で使用可能です。
preg_replace(),
create_function(),
そして callback 型に関する情報 も参照してください。