mmmh çocuklar, ben gerçekten benim ingilizce ne gerek açıklamak için iyi enaught umuyoruz.
Bu kod example (! Bu sadece bir örnektir) atın:
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();
Yani, php manuel geri arama gibi bir sınıf yöntemi kullanmak için preg_replace_callback()
, yöntem soyut olması gerektiğini söylüyorlar.
I need to pass an instance of a previuosly initialized object (in the example, an instance of the Something
geri arama işlevi de sınıf). Strong>
I call_user_func()
kullanmak için, ancak (i matches
parametresini özledim bu şekilde becose) çalışmaz uğraş.
Bunu yapmak için bir yolu var mı, ya da ben (, önce yaptığını preg_match_all
her maç için değiştirin değerini almak ve ardından basit bir preg_replace
) sürecini ayırmak? Zorunda
edit: Bir yan not olarak, Tom Haigh cevap önce, ben bu iş çevresinde kullanılan (örnekte, bu yöntemi değiştirin ise):
$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;
}
Umut birisi yardımcı olabilir.