|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2010-06-01 09:12 UTC] rasmus@php.net
-Status: Open
+Status: Bogus
[2010-06-01 09:12 UTC] rasmus@php.net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2026 The PHP GroupAll rights reserved. |
Last updated: Tue Jul 28 17:00:02 2026 UTC |
Description: ------------ [...] public function goto($page_num) { $this->page_num = $page_num; } [...] gives that: [Tue Jun 01 09:34:01 2010] [error] [client 127.0.1.1] PHP Parse error: syntax error, unexpected T_GOTO, expecting T_STRING in /workspace/project/web/lib/DataSourcePager.class.php on line 63 Test script: --------------- <?php class My_goto_test { public function goto($str = null) { echo $str; } } $tezt = new My_goto_test; $tezt->goto('hello!'); Expected result: ---------------- hello! Actual result: -------------- PHP Parse error: syntax error, unexpected T_GOTO, expecting T_STRING in /home/solik/jjj/goto_test.php on line 3