首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > PHP >

php类文件怎么访问别的文件中的变量

2012-06-08 
php类文件如何访问别的文件中的变量我声明了2个文件,一个类文件(123.class.php),一个普通文件(index.php,

php类文件如何访问别的文件中的变量
我声明了2个文件,一个类文件(123.class.php),一个普通文件(index.php,代码如下),123.class.php中如何获取index.php文件中的$abc的值(在类文件 中直接include不中,获取不到)

123.class.php代码如下:

PHP code
<?phpinclude('index.php');class a123{public function index{echo $aa;echo $bb;}}?>


index.php代码:
PHP code
<?php$aa='aaaaaaaaaaaaaaaaaaaaa';$bb='sdfsdfsdf';?>


实例化代码:

$abc=new a123;
$abc->index();

[解决办法]
include('index.php');
class a123{
public function index{
global $aa, $bb; //或 include('index.php');
echo $aa;
echo $bb;
}
}
[解决办法]
global

热点排行