UPDATE突然 - 没有改变任何东西 - 它在某些页面上再次起作用,在其他页面上它甚至没有显示我的函数function_exists('decod')的结果,任何想法为什么?
我收到此错误:
致命错误:在第10行的database.php中调用未定义的函数decod()
以前工作正常,这是database.php:
//Decode base64
function decod($string){
$string = base64_decode($string);
return ($string);
}
//Data double-coded with base64, just to prevent people reading
$host = "localhost";
$user = decod(DOUBLE_ENCRYPTED_USERNAME);
$pass = decod(DOUBLE_ENCRYPTED_PASSWORD);
$db = decod(DOUBLE_ENCRYPTED_DATABASE);
//Connect or print error
$con = mysql_connect($host, decod($user), decod($pass));
if (!$con)
{
die('Could not connect: ' . mysql_error());
}
//Select database
mysql_select_db(decod($db), $con);
答案 0 :(得分:0)
嗯,解释器找不到你的函数decod()
。无论它做什么,无论它位于何处,它都必须包含在您的代码中。
答案 1 :(得分:0)
您可以使用
检查当前文件中是否定义了该功能 function_exists ( string $function_name )
答案 2 :(得分:0)
人为错误 - 结果我的网站指向错误的database.php