我有这段代码:
<?php
ini_set('display_errors', 1);
ini_set('display_startup_errors', 1);
error_reporting(E_ALL);
namespace App\Item;
echo 'foo';
没有什么是“回应”。如果我删除namespace
它的工作原理。 \echo 'foo'
也不起作用。没有警告,没有错误,所以什么错了?
phpinfo(); //also not showing anything with the namespace
> PHP Version 7.0.18-0ubuntu0.16.10.1