php如何实现C#那种类库的概念

如下文件内容。

tool1.php

namespace MyTools;

class tool1
{

}

tool2.php

namespace MyTools;

class tool2
{

}

u.php

include MyTools\tool1;
include MyTools\tool2;

$t1 = new tool1();
$t2 = new tool2();

现在想实现的效果是,可以好像C#那样写,例如

include MyTools;

$t1 = new tool1();
$t2 = new tool2();

目的就是,如果命名空间一样的话,则只需要引用一次,就可以使用里面多个类,应该怎么写。。。?

阅读 2.8k
2 个回答

自动加载啊。。。

新手上路,请多包涵
class
撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题