命名空间 求解
<?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 这是怎么回事