Analysefehler: Syntaxfehler, unerwarteter T_STRING in F:appwampserverAppServwwwnamespace.php in Zeile 3
<code> <?php namespace Article; const PATH = '/article'; function getCommentTotal() { return 100; } class Comment { } namespace MessageBoard; const PATH = '/message_board'; function getCommentTotal() { return 300; } class Comment { } //调用当前空间的常量、函数和类 echo PATH; ///message_board echo getCommentTotal(); //300 $comment = new Comment(); //调用Article空间的常量、函数和类 echo \Article\PATH; ///article echo \Article\getCommentTotal(); //100 $article_comment = new \Article\Comment(); ?> </code>
Analysefehler: Syntaxfehler, unerwarteter T_STRING in F:appwampserverAppServwwwnamespace.php in Zeile 3
<code> <?php namespace Article; const PATH = '/article'; function getCommentTotal() { return 100; } class Comment { } namespace MessageBoard; const PATH = '/message_board'; function getCommentTotal() { return 300; } class Comment { } //调用当前空间的常量、函数和类 echo PATH; ///message_board echo getCommentTotal(); //300 $comment = new Comment(); //调用Article空间的常量、函数和类 echo \Article\PATH; ///article echo \Article\getCommentTotal(); //100 $article_comment = new \Article\Comment(); ?> </code>
Das Schlüsselwort const kann nur zum Definieren von Konstanten innerhalb einer Klasse verwendet werden. Bitte verwenden Sie define außerhalb der Klasse. (Vor PHP 5.3)