2007. 10. 29. 15:24
문자를 저장하는 함수
2007. 10. 29. 15:24 in 자작소스/PHP
<?php /** * 문자를 저장하는 함수 * * @param text $filename * @param text $str * @param text $mode * @return bool */ function saveText($filename,$str,$mode="a+") { $fp=fopen($filename,$mode); if($fp) { fwrite($fp,$str); fclose($fp); //chmod($filename,0777); return TRUE; } return FALSE; } ?>