命名空間 求解
<?php ?namespace a\c\b; class apple{ function get_info(){ echo "this is a"; } } <?php ? ?require_once("a.php"); require_once("b.php"); Fatal error: Namespace declaration statement has to be the very first statement in the script in D:\phpstudy\WWW\tase\a.php on line 2 這是怎么回事
2017-05-25
命名空間需要生命到php文件的第一行。