You have entered data outside the normal sequence. This can occur if you use your browser's Back or Forward buttons; please don't use these during the test. It can also happen if you click on something while a page is loading. Click Continue to resume.
check_arguments
函式,而是直接進行參數個數匹配檢查,若不匹配則直接回傳 false,如此就可跳過錯誤訊息的產生。
[root@dywang algebra]# vim parser.php ....... function evaluate($params) { // First ensure that there are the correct number of arguments //$this->check_arguments(); if(count($this->_arguments)!=$this->_nargs) {return false;} .......