파일 작업 함수
1445 단어 파일 작업
/**
*
+-------------------------------------------------
* @param string $file
* @return string
+-------------------------------------------------
*/
function read($file) {
$hd = fopen($file, "r");
$cont = fread($hd, filesize($file));
fclose($hd);
return $cont;
}
/**
*
+-------------------------------------------------
* @param string $file
* @param string $cont
+-------------------------------------------------
*/
function write($file, $cont='', $mode='w') {
$hd = fopen($file, $mode);
fwrite($hd, $cont);
fclose($hd);
}
//
function _mkdir($dir, $mode=0777) {
if (is_dir($dir) || @mkdir($dir, $mode)) return true;
if (!_mkdir(dirname($dir), $mode)) return false;
return @mkdir($dir, $mode);
}
//
function _rmdir ($dir, $self=true) {
if (!is_dir($dir)) return false;
$handle = opendir($dir);
while (($file = readdir($handle)) !== false) {
if ($file != "." && $file != "..") {
is_dir("$dir/$file") ? _rmdir("$dir/$file") : unlink("$dir/$file");
}
}
if ($self && readdir($handle) == false) {
closedir($handle);
rmdir($dir);
}
return true;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
python 읽기 및 쓰기 복사 파일 삭제 작업 방법 상세 실례 총결산1.read 세 가지 다른 방식 2. writer의 두 가지 일반적인 기본 방식 3. 삭제 삭제 동일한 파일의 동일한 파일 형식 삭제 4. 복사 첫 번째 방법 두 번째 사용 모듈 python 읽기와 쓰기, 복사 파일...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.