Home >Backend Development >PHP Tutorial >PHP命名空间 能用 ../abc 这种路径吗?

PHP命名空间 能用 ../abc 这种路径吗?

WBOY
WBOYOriginal
2016-06-06 20:06:511038browse

就是引用父空间的 方法,函数:
我试了试不行,也不知道真不行,还是自己写错了..

<code><?php namesapce a\b;
//★★这里怎么引用下面那个 say?



<?php
namesapce a;
function say()
{
}</code></code>

回复内容:

就是引用父空间的 方法,函数:
我试了试不行,也不知道真不行,还是自己写错了..

<code><?php namesapce a\b;
//★★这里怎么引用下面那个 say?



<?php
namesapce a;
function say()
{
}</code></code>

<code><?php namesapce a\b;

use a\say;

say();</code></code>
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn