我正在使用 Web 服务在 PHP 中发送 SMS。代码如下:
$options = array(
'login' => 'yourusername',
'password' => 'yourpassword'
);
$client = new SoapClient('http://sms.hostiran.net/webservice/?WSDL', $options);
try
{
$messageId = $client->send(destination mobile number, 'test sms');
sleep(3);
print ($client->deliveryStatus($messageId));
var_dump($client->accountInfo());
}
catch (SoapFault $sf)
{
print $sf->faultcode."\n";
print $sf->faultstring."\n";
}
问题是当我在 WAMP 服务器上运行这段代码时,它运行得很快。但是当我在 ubuntu 服务器上使用这段代码时,运行这段代码的速度非常低。php.ini 中是否有任何配置可以解决这个问题?
谢谢!