php
同じディレクトリに次のファイルがあります。
connection.php
index.php
lib.php
の関連コードconnection.php
:
....
....
$client = 4; //something that I've defined here
....
....
の関連コードindex.php
require_once('connection.php');
require_once('lib.php');
....
function_search(); //function of lib.php
....
....
の関連コードlib.php
class function_my_exception extends function_your_exception {
function __construct($hint, $debuginfo=null) {
parent::__construct($hint, 'debug', '', $hint, $debuginfo);
}
}
function function_search(){
....
....
if ($client !=4 )
//Do something
}
を実行するindex.php
と、エラーが発生し続けますUndefined variable $client" in line xxx of lib.php