代码之家  ›  专栏  ›  技术社区  ›  SaidbakR

使用php的阿拉伯语gammu短信息无法发送

  •  0
  • SaidbakR  · 技术社区  · 6 年前

    <?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

    1 回复  |  直到 6 年前
        1
  •  0
  •   SaidbakR    6 年前

    this section of documentation

    gammu -c /etc/gammurc sendsms  TEXT 02222000 -unicode -textutf8 "نص عربي"
    

    -textutf8 使用而不是 -text -c 配置文件路径是可选的,以确保将使用什么设备。