xn_log()
xn_log($s, $file = "error")
【功能】
记录信息到日志。
默认存到 $conf["log_path"] ,一天一个目录。
【参数】
$s:记录到日志的信息
$file:记录的文件名
【用例】
<?php
include "./xiunophp/xiunophp.php";
xn_log("the log");
?>
xn_log($s, $file = "error")
记录信息到日志。
默认存到 $conf["log_path"] ,一天一个目录。
$s:记录到日志的信息
$file:记录的文件名
<?php
include "./xiunophp/xiunophp.php";
xn_log("the log");
?>