3

我在某些服务器上使用星号中的一些 PHPAGI。但是当我在我的新服务器上使用它们时,它们只像往常一样工作了 3 天,现在它们需要的时间比预期的要长。这是一个示例。
任何建议表示赞赏。

#!/usr/bin/php -q
<?php
require('phpagi.php');
error_reporting(E_ALL);
$agi = new AGI();
$_callerId = $agi->get_variable("CALLERID(num)");
if(strlen($_callerId)>4)
{
  $con=mysqli_connect(SomeServer);
  $result = mysqli_query($con,"Select caller_id,extention from record_call order by id desc limit 50");

  while($row = mysqli_fetch_array($result)) {
  $tempCallerId = $row['caller_id'] ;
  $tempExtention = $row['extention'] ;
  if($tempCallerId==$_callerId)
  {
    $agi->set_variable('exExtention',$tempExtention);
    mysqli_close($con);
    return;
  }
};
$agi->set_variable('exExtention','new');
mysqli_close($con);

?>
4

1 回答 1

2

我知道了。连接到 MySQL 比平时花费更多,这是因为 elastix 中设置的 dns。我删除了它,现在它按预期工作。

于 2017-01-30T20:09:56.743 回答