2012-08-28 65 views
0

我正在使用郵戳入站電子郵件功能構建一個PHP腳本 - 並且演示PHP代碼正在爲我拋出各種錯誤。我已經從演示頁面幾乎逐字複製了代碼,但是\似乎導致了PHP錯誤。 Demo code homepage is here郵戳PHP演示錯誤

和代碼我使用:

require_once '/postmark/Autoloader.php'; 
\Postmark\Autoloader::register(); 

// this file should be the target of the callback you set in your postmark account 
$inbound = new \Postmark\Inbound(file_get_contents('php://input')); 

錯誤:

解析錯誤:語法錯誤,在/home/path/page.api.email.php意外T_STRING第10行

第10行是:\ Postmark \ Autoloader :: register();

回答

1

聽起來你很可能不會運行PHP> = 5.3 - Namespaces(\郵戳\自動裝彈機)僅在> = 5.3

0

支持試試這個:

require_once '../postmark/Autoloader.php'; 
\Postmark\Autoloader::register(); 

// this file should be the target of the callback you set in your postmark account 
$inbound = new \Postmark\Inbound(file_get_contents('php://input'));