当前位置:Gxlcms > PHP教程 > 请教大家一个关于php类的问题

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

时间:2021-07-01 10:21:17 帮助过:7人阅读

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);          }}

放在方法里引入

谢谢大家的热心回答

人气教程排行