douduandiao1368 2016-11-08 14:01
浏览 235
已采纳

PHP可以在两个文件中嵌套类吗?

I know that php can't nest classes, but it seems that it can if the two classes are in two files:

MainClass.php:

<?php
ini_set('display_errors', 'On');
error_reporting(E_ALL | E_STRICT);

class mainclass
{
  private $var;
  public function __construct()
  {
    require_once ('subclass.php');
    $subinstant = new subclass();
  }
}
$maininstant = new mainclass();

And subclass.php

<?php
ini_set("display_errors", "On");
error_reporting(E_ALL | E_STRICT);
class subclass
{
  public function __construct()
  {
    $this->var="this-var
";
    echo $this->var;
    $test="test in construct
";
    echo $test;
    function testvar()
    {
      //$this->var = "this-var in fun
";
      //echo $this->var;
      $funtest="test in fun
";
      echo $funtest;
    }
    testvar();
  }
}

No errors output, and the result is as expected. I just don't understand the require_once, it seems that it will include the code in subclass.php, so what's the difference, compared to write it directly at the same position?

What's more, how can I access the variable $var in testvar()? (Use as many methods as you can think), thanks!

  • 写回答

2条回答 默认 最新

  • dongqian7545 2016-11-08 14:15
    关注

    require_once does not include the code from the other class right on the spot. The behavior of require, require_once, include and include_once is unique: it "leaves" the current object and "merges" the code from the requested file to the global scope.

    This means, that what you perceive as this

    class mainclass
    {
      private $var;
      public function __construct()
      {
        require_once ('subclass.php');
        $subinstant = new subclass();
      }
    }
    

    the PHP interpreter actually sees this (when you create an instance of mainclass):

    class mainclass
    {
      private $var;
      public function __construct()
      {
        $subinstant = new subclass();
      }
    }
    
    class subclass
    {
      public function __construct()
      {
        $this->var="this-var
    ";
        echo $this->var;
        $test="test in construct
    ";
        echo $test;
        function testvar()
        {
          //$this->var = "this-var in fun
    ";
          //echo $this->var;
          $funtest="test in fun
    ";
          echo $funtest;
        }
        testvar();
      }
    }
    $maininstant = new mainclass();
    

    As @Federkun pointed in the comment to this post, it's actually written in the docs:

    However, all functions and classes defined in the included file have the global scope.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥50 用易语言http 访问不了网页
  • ¥50 safari浏览器fetch提交数据后数据丢失问题
  • ¥15 matlab不知道怎么改,求解答!!
  • ¥15 永磁直线电机的电流环pi调不出来
  • ¥15 用stata实现聚类的代码
  • ¥15 请问paddlehub能支持移动端开发吗?在Android studio上该如何部署?
  • ¥20 docker里部署springboot项目,访问不到扬声器
  • ¥15 netty整合springboot之后自动重连失效
  • ¥15 悬赏!微信开发者工具报错,求帮改
  • ¥20 wireshark抓不到vlan