<?php
$text = $_POST['text'];
$numb = $_POST['numb'];
if ($text != '' && $numb != ''){
//die('echo "'.$text.'" | gammu --sendsms TEXT '.$numb);
echo "<pre>";
//die(passthru('whoami'));
$command = 'echo "'.$text.'" | gammu --sendsms TEXT '.$numb.' >> '.__DIR__.'/smslog.txt';//.'" | gammu --sendsms TEXT '.$numb;
echo passthru($command);
//echo $command;
}
else{
?>
<form method="POST">
<input type="text" name="numb">
<textarea name="text"></textarea>
<input type="submit">
</form>
<?php
}
?>
Sending SMS 1/1....waiting for network answer..OK, message reference=18
另外,我注意到,从终端,使用相同的gammu命令和阿拉伯语文本,它交付得很好,但是
?? ??????? ???
我的服务器是Ubuntu Linux 16.04。
-unicode
gammu sendsms TEXT 022222222 -unicode -text "Ùص عربÙ"
,上面提到的脚本,发送阿拉伯信息,但它看起来像
333333333
字符串通过发送到命令流时发生
passthru
exec