我是PHP的初学者,因此我深表歉意。
我现在花了很多时间进行谷歌搜索,但我仍然不断遇到相同的错误,我正在尝试使用twilio来启动短信服务。我已经安装了作曲家,运行了“ composer require twilio / sdk”脚本。以下是应该允许您发送消息的入门代码。也正在使用WAMP运行服务器。
“(!)解析错误:语法错误,第3行C:\ wamp64 \ www \ send-message.php中出现意外的'use'(T_USE)”一直都是错误
很抱歉,我只是对推理感到困惑。
<?php
require __DIR__ . '/vendor/autoload.php'
use Twilio\Rest\Client;
$sid = 'whereSIDwouldgo'; // have checkd this
$token = 'whereTokenWouldgo'; // have checked this
$client = new Client($sid, $token);
$client->messages->create(
'+440000000000',// normally have registered number
array(
// A Twilio phone number you purchased at twilio.com/console
'from' => '+4400000000',// normally have registered number
// the body of the text message you'd like to send
'body' => 'Hey, hows it going?'
)
);
?>