0
我正在嘗試製作if
,它將嘗試通過搜索後獲取文檔的一行。因此它在文檔中搜索「註冊器句柄」並獲得該行的全部輸出。搜索文檔中的文本並將行作爲輸出
我的是,問題是,我得到這個錯誤:Notice: Undefined index: Registrar Handle in C:\xxxx\xxxx\xxx\xx on line 29
將是很好,如果有人有一個解決方案,也許有它爲什麼發生的解釋?
$commandR = "whois ".mysql_result($domain, 0);
$outputR = shell_exec($commandR);
$fhR = fopen('R.txt','w+');
fwrite($fhR,$outputR);
fclose($fhR);
{
//.no
if(strpos(file_get_contents("./R.txt"),$_GET['Registrar Handle'])){
$fhR = fopen('A.txt','r');
$R = fgets($_GET);
fclose($fhA);
Echo $R;
//mysql_query("UPDATE `dom_oversikt`.`server1` SET `Registrar`='".$R."' WHERE `id` = '$id';");
}
你有什麼問題? –
@u_mulder我更新了一點 – Leifus
[PHP:「Notice:Undefined variable」和「Notice:Undefined index」]的可能重複(http://stackoverflow.com/questions/4261133/php-notice-undefined-variable- and-notice-undefined-index) –