9

うーん、みんな、私は本当に私の英語が私が必要なものを説明するのに十分な能力があることを願っています。

このコードの(これは単なる例です!)を見てみましょう。

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;
}

希望は誰かを助けることができます。

4

3 に答える 3

14

コールバックに引数を渡すのは難しいですが、これの代わりに:

return preg_replace_callback($this->reg, 'Foo::Bar', $this->string);

Bar()静的にしないようにして、これを使用することができます:

return preg_replace_callback($this->reg, array($this, 'Bar'), $this->string);

その後、コールバック関数は見ることができるようになります$this

疑似型と変数の「コールバック」を参照してください

また、PHP> = 5.3では、無名関数/クロージャを使用して、他のデータをコールバック関数に渡すことができます。

于 2010-04-21T08:04:50.937 に答える
12

create_function()メソッドとcall_user_function()メソッドを使用して引数(追加のパラメーター)をコールバックに渡そうとしたときにスタックしました。

これは参照用です:

<?php
$pattern = "/([MmT][a-z]*)/";
$string = "Mary is a naughty girl because she took all my animals.";
$kill = "Mary";

echo preg_replace_callback($pattern, function($ma) use ($kill) {

    foreach ($ma as $m){
        if ($m == $kill){
            return "Jenny";
        }
        return "($m)";
    }
}, $string);

echo "\n";
?>

$ php preg_replace_callback.php 
Jenny is a naughty girl because she took all (my) ani(mals).
于 2011-06-24T22:42:35.790 に答える
0

はい、私はこのようなものを使用して変更変数を設定および設定解除し、コールバック関数で使用できるようにします。これを行うために新しいphpは必要ありません。

foreach ($array as $key) {
    $this->_current_key = $key;
    preg_replace_callback($regex, array($this, '_callback'), $content);
    unset($this->_current_key);
}

次に、コールバック関数で$ this->_current_keyが使用可能になります。

function _callback ($match) {    
    //use the key to do something
    new_array[$key] = $match[0];

    //and still remove found string
    return '';
}
于 2012-04-11T23:41:14.227 に答える