디버깅을 위한 로그 남기기
error_log 함수
http://www.php.net/manual/en/ref.errorfunc.php
error_log 함수
<?
$result
=
"starlits is victory"
;
error_log
(
"
$result
\n
"
,
3
,
"/tmp/php4.log"
)
;
?>