次のコード例を見てください。
<?php
class A {
public function aa() {
$output = (array(&$this, 'ab'), $post_id);
return $output;
}
public function ab( $post_id ) {
//do stuff
}
}
?>
次のような追加の引数を含むメソッドabを呼び出す正しい方法は何$post_id
ですか?
私はその$output
線が機能しないことを知っています、しかしそれは私が立ち往生している線です。
ありがとう。