asteriskのlogger.confで設定したDTMFのログファイルをWebに表示する
まず、phpでsakuravpsサーバのログファイルをそのまま表示してみる。
参考は、
http://php-beginner.com/practice/file_ope/file_ope3.html
サンプルは、
****************
file_get_contents()使用例
****************
<?php
$contents = @file_get_contents(‘sample.txt’);
echo $contents;
?>
****************
参考は、
http://php-beginner.com/practice/file_ope/file_ope3.html
サンプルは、
****************
file_get_contents()使用例
****************
<?php
$contents = @file_get_contents(‘sample.txt’);
echo $contents;
?>
****************
これより、
<?php
$contents = @file_get_contents(‘/var/log/asterisk/dtmf’);
echo $contents;
?>
を
/var/www/html/asterisk_log
に、ファイル名
dtmf_log1.php
として設置する。
・・・・
http://ik1-313-16602.vs.sakura.ne.jp/asterisk_log/dtmf_log1.php
・・・・
うーーん。改行しないと見ずらいなあ・・・
<?php
$contents = @file_get_contents(‘/var/log/asterisk/dtmf’);
echo $contents;
?>
を
/var/www/html/asterisk_log
に、ファイル名
dtmf_log1.php
として設置する。
・・・・
http://ik1-313-16602.vs.sakura.ne.jp/asterisk_log/dtmf_log1.php
・・・・
うーーん。改行しないと見ずらいなあ・・・
****************
file()使用例
****************
<?php
$contents = @file(‘sample.txt’);
foreach($contents as $line){
echo $line.”<br />”;
}
?>
****************
これより、
<?php
$contents = @file(‘/var/log/asterisk/dtmf’);
foreach($contents as $line){
echo $line.”<br />”;
}
?>
file()使用例
****************
<?php
$contents = @file(‘sample.txt’);
foreach($contents as $line){
echo $line.”<br />”;
}
?>
****************
これより、
<?php
$contents = @file(‘/var/log/asterisk/dtmf’);
foreach($contents as $line){
echo $line.”<br />”;
}
?>
http://ik1-313-16602.vs.sakura.ne.jp/asterisk_log/dtmf_log2.php
おお、、やや見やすくなった!!!
今日は、ここまで!!!
以上