LoginSignup
0
0

More than 5 years have passed since last update.

preg_replace_callbackで、無名関数を使わない場合

Posted at

preg_replace_callbackの第2引数は一般的には無名関数を使いますが、
時として$this->myfunctionといったようにクラスメソッドを指定したい時があります。
この書き方がわからなかったのですが、公式ページのサンプルコードにありました:

preg_replace_callback($pattern, array($this, 'replace'), $text);

private function replace($matches){
    // 処理を記載
}  
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0