うーん、みんな、私は本当に私の英語が私が必要なものを説明するのに十分な能力があることを願っています。
このコードの例(これは単なる例です!)を見てみましょう。
class Something(){
public function Lower($string){
return strtolower($string);
}
}
class Foo{
public $something;
public $reg;
public $string;
public function __construct($reg, $string, $something){
$this->something = $something;
$this->reg = $reg;
$this->string = $string;
}
public function Replace(){
return preg_replace_callback($this->reg, 'Foo::Bar', $this->string);
}
public static function Bar($matches){
/*
* [...]
* do something with $matches and create the $output variable
* [...]
*/
/*
* I know is really useless in this example, but i need to have an istance to an object here
* (in this example, the Something object, but can be something else!)
*/
return $this->something->Lower($output);
}
}
$s = new Something();
$foo = new Foo($myregexp, $mystring, $s);
$content = $foo->Replace();
したがって、phpマニュアルには、クラスメソッドをのコールバックとして使用するにpreg_replace_callback()
は、メソッドが抽象である必要があると記載されています。
Something
コールバック関数で、以前に初期化されたオブジェクトのインスタンス(この例ではクラスのインスタンス)を渡す必要があります。
を使用しようとしましたが、機能しcall_user_func()
ません(この方法では、matches
パラメーターが欠落しているため)。
それを行う方法はありますか、またはプロセスを分離する方法はありますか(前preg_match_all
に実行し、一致するたびに置換値を取得してから、単純にしpreg_replace
ます)?
編集:補足として、tom haighの回答の前に、この回避策を使用しました(この例では、これはReplaceメソッドです):
$has_dynamic = preg_match_all($this->reg, $this->string, $dynamic);
if($has_dynamic){
/*
* The 'usefull' subset of my regexp is the third, so $dynamic[2]
*/
foreach($dynamic[2] AS $key => $value){
$dynamic['replaces'][$key] = $this->Bar($value);
}
/*
* ..but i need to replace the complete subset, so $dynamic[0]
*/
return str_replace($dynamic[0], $dynamic['replaces'], $this->string);
}else{
return $this->string;
}
希望は誰かを助けることができます。