开发者

PHP namespaces and require

开发者 https://www.devze.com 2023-02-17 10:01 出处:网络
I need to include several files in a main index.php file. I\'m working with namespaces. Can I use include/require and make 开发者_开发技巧the files use the same namespace as index.php without specify

I need to include several files in a main index.php file. I'm working with namespaces.

Can I use include/require and make 开发者_开发技巧the files use the same namespace as index.php without specifying the namespaces and use statements in each included file?


PHP namespaces are scoped at the file level.

If a.php is inside a namespace, and it includes b.php, but b doesn't specify a namespace, it will not adopt the namespace defined in a.

0

精彩评论

暂无评论...
验证码 换一张
取 消