>백엔드 개발 >PHP 튜토리얼 >php namespace 的疑问

php namespace 的疑问

WBOY
WBOY원래의
2016-07-06 13:53:26972검색

在官方手册上没有找的这种写法的意思?

<code class="php">namespace {
    $test = 'a';
}

namespace {
    if($test == 'a'){
        //do something
    }
}</code>

回复内容:

在官方手册上没有找的这种写法的意思?

<code class="php">namespace {
    $test = 'a';
}

namespace {
    if($test == 'a'){
        //do something
    }
}</code>

可以看看,以前优化的时候,用过这个方式,将框架多个文件合并成一个。
手册地址是: http://php.net/manual/zh/language.namespaces.definitionmultiple.php

我本地自己试了一次,发现一个问题

<code>namespace a
{
    class abc
    {
        private $test = 'a';
        public function ceshi()
        {
            echo $this->test;
        }
    }
}

namespace {
    $ceshi = new a\abc();
    $ceshi->ceshi();
}
</code>

<code>namespace a;
class abc
{
    private $test = 'a';
    public function ceshi()
    {
        echo $this->test;
    }
}

namespace b;

class abc
{
    private $test = 'b';
    public function ceshi()
    {
        echo $this->test;
    }
}
use a;
$ceshi = new a\abc();
$ceshi->ceshi();</code>

意义差不多 第一种是全局调用

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