首頁 >後端開發 >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