从另一个php文件中获取变量
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了从另一个php文件中获取变量相关的知识,希望对你有一定的参考价值。
从另一个php文件中获取变量
Hello是否可以从另一个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*/
?>
答案
在file1.php中使用include或require:
<?php
include 'file2.php';
//require 'file2.php';
echo 'my variable is '.$var;
//reading the variable from line 3
?>
另一答案
你可以include页面中的文件。
以上是关于从另一个php文件中获取变量的主要内容,如果未能解决你的问题,请参考以下文章