3

我正在使用 Sendgrid 的 PHP 库(https://github.com/sendgrid/sendgrid-php)。按照说明,我不得不使用这行代码:

$mail = new SendGrid\Mail();

我得到错误:

Warning: Unexpected character in input: '\' (ASCII=92) state=1 in /home/d/public_html/ac/application/controllers/email.php on line 20

Parse error: syntax error, unexpected T_STRING in /home/d/public_html/ac/application/controllers/email.php on line 20

使用有什么问题'\'吗?对我来说似乎很奇怪......我怎样才能让它工作?

4

1 回答 1

7

\名称空间的一部分,这是PHP 5.3 中的一个新特性。

于 2012-05-30T18:13:25.637 回答