PHP - 检查其他文件中是否存在变量

时间:2017-06-18 07:38:58

标签: php variables

我有这个代码

if (isset($title) && ($title !== null))

也试过这个

if (isset($title) && ($title === true))

但是这段代码不起作用因为它不检查变量是否存在并且在if中执行代码。 我想检查另一个文件中是否存在变量我该怎么做?

1 个答案:

答案 0 :(得分:2)

include条件之前使用require if,然后尝试打印(如果存在):

示例::

<?php 
require 'demo.php'; //suppose in this file $title=' Hello world';

if (isset($title) && ($title !== null)&& ($title !== '') ){

echo '$title'; // echo the title here

}

?>