欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

请教大家一个关于php类的问题

程序员文章站 2022-05-26 10:24:31
...
1.php
a);		}}$test = new test;$test->testa();?>


2.php
1);?>


通过1.php 输出2.php 里的数组 但是总是报错 请教大家应该怎么写


回复讨论(解决方案)

class test{    public $a;    function test() {      $this->a =  = include('./2.php');    }    function testa()    {       print_r( $this->a);         }}

class test{    public $a;     public function __construct() {      $this->a = include('./2.php');    }     function testa()    {       print_r( $this->a);          }}

放在方法里引入

谢谢大家的热心回答