dongyu9667 2016-03-17 14:46
浏览 215
已采纳

使用FreePBX和Asterisk调用PHP脚本

So I have a VOIP system set up through a FreePBX server. I want to have it so that when a new call is picked up by FreePBX, asterisks will send the caller ID and the call ID to a php script, which will then use that information to gather ticket information for the account related to that caller ID. It will then update a database with the found information. When a user answers the phone, I then want to send the user's extension and the call ID to another php script and update the database with the new information.

I have looked into PHPARI, but the documentation is lacking for me. I just need it to go one way, and PHPARI and similar libraries seem to focus on going both ways, from what I've understood.

My internet searches have yielded nothing, so I turn to you guys for help and guidance.

FreePBX Version: 13.0.83 Asterisk Version: 13.7.1

  • 写回答

1条回答 默认 最新

  • douxi1738 2016-03-17 17:50
    关注

    Have a look at Asterisk AGI you should be able to script it through the dial plan (extensions.conf) and include any vars like caller ID.

    I've done a quick test from my extension.conf;

    s is used to catch where no called number is used in the context.

    exten => s,1,Verbose(Incoming call from Sip line CallerID=${CALLERID(all)})
    exten => s,2,AGI(phone.php,${CALLERID(all)})
    exten => s,3,Goto(internal-ext,3001,1)
    

    my phone.php is located at /var/lib/asterisk/agi-bin/phone.php Pass your vars as script.php,<var>,<var>...

    Don't use script.php?callNum= as that's only valid for web applications, this should be treated as command line.

    That script writes to a file at /tmp/phone which is updated with the calling caller id.

    In my php script I did the following;

    #!/usr/bin/php
    
    <?php
        $query = $argv[1];
        $file = fopen("/tmp/phone", "w");
            fwrite($file,$query);
            fclose($file);
    ?>
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 微信会员卡等级和折扣规则
  • ¥15 微信公众平台自制会员卡可以通过收款码收款码收款进行自动积分吗
  • ¥15 随身WiFi网络灯亮但是没有网络,如何解决?
  • ¥15 gdf格式的脑电数据如何处理matlab
  • ¥20 重新写的代码替换了之后运行hbuliderx就这样了
  • ¥100 监控抖音用户作品更新可以微信公众号提醒
  • ¥15 UE5 如何可以不渲染HDRIBackdrop背景
  • ¥70 2048小游戏毕设项目
  • ¥20 mysql架构,按照姓名分表
  • ¥15 MATLAB实现区间[a,b]上的Gauss-Legendre积分