Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有 PHP 的命名空间问题,我想在其中使用包含破折号的目录:
test-library
当我这样做时
use \test-library\myclass
我收到破折号错误。知道如何解决这个问题
在行尾添加分号:
use \test-library\myclass;