我在這裏看到我的問題PHP Script to Edit DNS Records in CPanel但是當我嘗試使用dnsclass.php。 我可以創建這樣一個對象:T_VARIABLE解析錯誤
$zones = new zone_records("cpaneluser", "pass", "website_to_login", "domain_of_records")
但我不能用這個:
$zones->addrecord($type, $target, $name, $ttl)
我有這樣的問題:
解析錯誤:語法錯誤,意外T_VARIABLE /家用/ mcser325 /的public_html/test.php的
我的代碼:
include 'classdns.php';
$zones = new zone_records("**", "**", "**", "**")
$zones->addrecord("**", "**", "**", "**")
PHP錯誤消息顯示行號。向我們顯示導致錯誤的行。如果這是線路,那可能是缺少分號。 – ceejayoz
值得在其中的任何一邊加上幾行,因爲有時候錯誤會在其他地方出現,但解釋器直到以後纔會提取。 – andrewsi
我編輯了標題,因爲這與編輯DNS記錄有*無關。 – ceejayoz