0

消印の受信メール関数を使用してPHPスクリプトを作成しています。デモのPHPコードでは、あらゆる種類のエラーがスローされます。デモページからほぼ一語一語コードをコピーしましたが、\が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'));

エラー:

解析エラー:構文エラー、10行目の/home/path/page.api.email.phpに予期しないT_STRINGがあります

10行目は次のとおりです。\Postmark\ Autoloader :: register();

4

2 に答える 2

1

おそらく PHP >= 5.3 を実行していないようです -名前空間(\Postmark\Autoloader) は >= 5.3 でのみサポートされています

于 2012-08-28T12:29:58.983 に答える
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'));
于 2016-06-14T12:28:56.947 に答える