-4

我是php的初学者。我有一个 php 文件,我想在其中包含来自其他 php 文件的变量值。我输入了这段代码,但它返回了错误

<? php
include 'xxx.php';
echo "$statistics"; ?>

Fatal error: Class 'Report_Form' not found in Z:\xxx.php on line 37

而在xxx.php on line 37 I have "class Report_Form_xxx extends Report_Form"

如何从中获取变量的$statisticsxxx.php

4

1 回答 1

0

你提到过

xxx.php on line 37 I have "class Report_Form_xxx extends Report_Form

但是尝试检查文件xxx.php上是否真的存在类 Report_Form类似于

class Report_Form
{

....

}
于 2013-09-02T10:42:43.553 回答