PHP 命名空间:函数加载
我想尝试一下 PHP 中的函数式编程。我认为在总是在 php 中编写 oop 时尝试一些不同的东西是很有趣的。
但是,我想使用命名空间。我的命名空间等于文件结构:
namespace my\Models\User;
/my/Models/User.php
是他们执行自动加载之类的操作的一种方法。我想必须同时写 use 和 require_once 吗?
此致, 塞巴斯蒂安
I'd like to play a bit with functional programming in PHP. I think it's intersting to try out something different when always writing oop in php.
However, I'd like to use namespaces. My namespaces are equal to the file structure:
namespace my\Models\User;
/my/Models/User.php
Is their a way to do something like autoloading for this. That I want have to write both use and require_once?
Best regards,
Sebastian
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您不能自动加载函数或命名空间,只能自动加载类。
You cannot autoload functions or namespaces, only classes.