PHP 5.6
Symfony 3
我的文件包中包含一个包含定义常量的名称空间…
constfile.php
<?php
namespace Some\Interesting\ConstFile {
const NAME_OF_CONSTANT = 'Some Constant';
}
namespace Some\Interesting\ConstFile\Specific {
const NAME_OF_SPECIFIC_CONSTANT = 'Some Specific Constant';
}
然后我在另一个包中有另一个文件,我正在尝试使用常量…
stuff.php
<?php
namespace More\Cool\Stuff;
use Some\Interesting\ConstFile as CF;
use Some\Interesting\ConstFile\Specific as CFS;
class Stuff {
public function doit() {
$output->writeln(CF\NAME_OF_CONSTANT);
$output->writeln(CFS\NAME_OF_SPECIFIC_CONSTANT);
}
}
PHPStorm对此设置没有任何抱怨.但是,运行此命令时,出现“致命错误:stuff.php中的未定义常量NAME_OF_CONSTANT”错误.
解决方法:
尝试加载此类文件时,自动加载效果不佳,请尝试手动添加原始文件.
require 'path/to/constfile.php'