자작소스/PHP
문자를 저장하는 함수
와이즈번
2007. 10. 29. 15:24
<?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; } ?>