2013-07-19 70 views
0

我需要幫助的人,你熟悉鍊金api嗎?這是一款運行在不同平臺上的搜索引擎優化工具,它使用內容抓取原理從網頁中提取內容。類別AlchemyAPI未找到錯誤

我下載了PHP的鍊金術api的API,我得到了一個錯誤,我無法加載頁面,如果有人在這個論壇,熟悉鍊金術api或用PHP很好,我真的需要你的幫助球員。錯誤說:

Fatal error: Class 'AlchemyAPI' not found in line 44

這裏是我的代碼:

function CheckNoParams() { 
    $alchemyObj = new AlchemyAPI(); // line 44 
    $alchemyObj->loadAPIKey("api_key.txt"); 
    $htmlFile = file_get_contents("../example/data/example.html"); 
    $htmlFile2 = file_get_contents("../example/data/example2.html"); 
} 

回答

0

看起來你還沒有使用include。試試這個:

function CheckNoParams() { 
    include "./module/AlchemyAPI.php"; 
    $alchemyObj = new AlchemyAPI(); // Now line 45 :-P 
    $alchemyObj->loadAPIKey("api_key.txt"); 
    $htmlFile = file_get_contents("../example/data/example.html"); 
    $htmlFile2 = file_get_contents("../example/data/example2.html"); 
} 

(假設你已經保存的原始文件結構,當你下載了鍊金術的PHP SDK)