728x90
문자열을 파일로 저장하는 예제.
function String2File($sIn, $sFileOut) {
$rc = false;
do {
if (!($f = fopen($sFileOut, "a+"))) {
$rc = 1; break;
}
if (!fwrite($f, $sIn)) {
$rc = 2; break;
}
$rc = true;
} while (0);
if ($f) {
fclose($f);
}
return ($rc);
}
String2File(' ', '/tmp/a.txt');
출처 : php.net
'Engineering > PHP' 카테고리의 다른 글
apm 설치 (0) | 2011.11.14 |
---|---|
PHP함수 call_user_func_array() (0) | 2011.07.12 |
HTML 안의 php 코드 인식 (0) | 2011.05.27 |
goo.gl short URL API 사용 (0) | 2011.03.11 |
PHP XML 지원 (--disable-dom 를 나올때) (0) | 2011.02.21 |