从另一个php文件中获取变量

时间:2014-02-27 22:24:33

标签: php

从行

中的另一个php文件获取变量

您好 是否可以从另一个PHP文件中获取值 从特定行读取变量 示例

file1.php

<?php
echo 'my variable is';
//reading the variable from line 3
?>

file2.php

<?php
/*this  is line 1*/
/*this  is line 2*/
$var = 'hello world'; /*this  is line 3*/
?>

2 个答案:

答案 0 :(得分:1)

在file1.php中使用include或require:

<?php
include 'file2.php';
//require 'file2.php';
echo 'my variable is '.$var;
//reading the variable from line 3
?>

答案 1 :(得分:0)

您可以include页面中的文件。