PHPでSMSを送信するためにWebサービスを使用しています。以下のようなコード:
$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 の設定はありますか?
ありがとう!