として保存されているメソッドを呼び出そうとしています$_auto
が、機能しません。
<?php
class Index {
private $_auto;
public function __construct() {
$this->_auto = "index";
$this->_auto();
}
public function index() {
echo "index";
}
}
$index = new Index();
?>