>백엔드 개발 >PHP 튜토리얼 >.net - php如何实现C#那种类库的概念

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

WBOY
WBOY원래의
2016-06-06 20:20:561150검색

如下文件内容。

tool1.php

<code>namespace MyTools;

class tool1
{

}

</code>

tool2.php

<code>namespace MyTools;

class tool2
{

}

</code>

u.php

<code>include MyTools\tool1;
include MyTools\tool2;

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

</code>

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

<code>include MyTools;

$t1 = new tool1();
$t2 = new tool2();
</code>

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

回复内容:

如下文件内容。

tool1.php

<code>namespace MyTools;

class tool1
{

}

</code>

tool2.php

<code>namespace MyTools;

class tool2
{

}

</code>

u.php

<code>include MyTools\tool1;
include MyTools\tool2;

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

</code>

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

<code>include MyTools;

$t1 = new tool1();
$t2 = new tool2();
</code>

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

自动加载啊。。。

<code>class</code>
성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.