如何将一个 AGI 文件包含在另一个 AGI 文件中?

发布于 2024-08-03 14:42:42 字数 110 浏览 11 评论 0原文

是否可以将一个 AGI 文件包含在另一个文件中并从中调用函数,这些函数作为调用它的 AGI 文件的一部分执行?

如果是,如何将一个 AGI 包含在另一个 AGI 中?

谢谢。

Is it possible to include an AGI file in another one and call functions from it which execute as part of the AGI file it is being called from?

If yes, how to include one AGI in another?

Thank You.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

知足的幸福 2024-08-10 14:42:42

一些示例代码会很有帮助,但我认为您会在 Asterisk::AGI 文档。

编辑:您可以使用 require 命令将 AGI 文件包含在其他 AGI 文件中,就像包含任何 Perl 文件一样。例如:

如果您的脚本位于目录“var/lib/asterisk/agi-bin/directoryname/”中,

请将此行放入您的 AGI 脚本中:

require '/var/lib/asterisk/agi-bin/directoryname/yourscriptname';

Some sample code would be helpful, but I think you'll find your answer in the Asterisk::AGI documentation.

EDIT: you can include AGI files in other AGI files just as you would include any Perl file, with the require command. e.g.:

If your script is in the directory "var/lib/asterisk/agi-bin/directoryname/"

put this line in your AGI script:

require '/var/lib/asterisk/agi-bin/directoryname/yourscriptname';
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文