我需要一个与awnser一些代码一个问题与PHP代码在html的shell脚本:
Shell脚本
read -p nome: nome
read -p ramal: ramal
read -p passwd: passwd
echo " " >> sip.conf
echo [$nome] >> sip.conf
echo type=friend >> sip.conf
echo username=$nome >> sip.conf
echo callerid=$nome >> sip.conf
echo mailbox =$ramal >> sip.conf
echo secret=$passwd >> sip.conf
echo host=dynamic >> sip.conf
echo context=local-tmp >> sip.conf
echo " " >> extensions.conf
echo "exten => $ramal,1,Dial(SIP/$ramal,10,t)" >> extensions.conf
在html的php代码,应该执行shell_exec和anwser:
nome
ramal
passwd
1条答案
按热度按时间wbgh16ku1#
你不需要bash来将内容附加到文件中,你可以使用
fopen
和a
标志,或者file_put_content
和FILE_APPEND
标志: