首页 > 其他 > 详细

Fatal error: Namespace declaration statement has to be the very first statement or after any declare call in the script in

时间:2017-02-09 11:34:04      阅读:1735      评论:0      收藏:0      [点我收藏+]

学习php的命名空间,直接把手册的代码粘贴过来,却报错了:Fatal error: Namespace declaration statement has to be the very first statement or after any declare call in the script in

代码如下:

 1 <?php 
 2 namespace my\name; // 参考 "定义命名空间" 小节
 3 
 4 
 5 class MyClass {}
 6 function myfunction() {}
 7 const MYCONST = 1;
 8 
 9 $a = new MyClass;
10 $c = new \my\name\MyClass; // 参考 "全局空间" 小节
11 
12 $a = strlen(‘hi‘); // 参考 "使用命名空间:后备全局函数/常量" 小节
13 
14 $d = namespace\MYCONST; // 参考 "namespace操作符和__NAMESPACE__常量" 小节
15 
16 $d = __NAMESPACE__ . ‘\MYCONST‘;
17 echo constant($d); // 参考 "命名空间和动态语言特征" 小节

解决办法:
将页面转为utp-8无dom格式就OK了。以notepad++为例:

 技术分享

Fatal error: Namespace declaration statement has to be the very first statement or after any declare call in the script in

原文:http://www.cnblogs.com/zjfblog/p/6380863.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!