Skip to content

Instantly share code, notes, and snippets.

@ambiorixg12
Created December 19, 2018 03:18
Show Gist options
  • Save ambiorixg12/8881f1f8f2be63fef49f5bbf23a48202 to your computer and use it in GitHub Desktop.
Save ambiorixg12/8881f1f8f2be63fef49f5bbf23a48202 to your computer and use it in GitHub Desktop.
writting data from Asterisk file
<?php
$file="/etc/asterisk/data.txt";
$data=$argv[1]."\n";
$data.="$argv[2]";
file_put_contents("$file", $data,FILE_APPEND);
?>
Dial paln
[writting]
exten=>_1011,1,Noop()
same=>n,system(php /root/script_write.php ${CHANNEL} ${UNIQUEID})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment