3 新しい自己対新しい静的 PHP 5.3ライブラリをPHP 5.2で動作するように変換しています。私の邪魔になる主なものはのような遅い静的バインディングの使用です、return new static($options);これをに変換するreturn new self($options)と同じ結果が得られますか? 違いは何であるnew selfとはnew static? 513 php static late-static-binding