Home  >  Article  >  Backend Development  >  (转)php读写文件

(转)php读写文件

WBOY
WBOYOriginal
2016-06-23 14:29:071006browse

 

php读写文件

//例1

if $_POST['submit']=='提交' {
$handle = fopen("list.txt", "w");
fwrite($handle,$_POST['text']);
fclose($handle);
}
?>


php读写文本文件









   

function readfromfile($file_name) { //File Reading
    if (file_exists($file_name)) {
        if (PHP_VERSION >= "4.3.0") return file_get_contents($file_name);
        $filenum=fopen($file_name,"r");
        $sizeofit=filesize($file_name);
        if ($sizeofit         @flock($filenum,LOCK_EX);
        $file_data=fread($filenum, $sizeofit);
        fclose($filenum);
        return $file_data;
    } else return '';
}

function writetofile ($filename, $data) { //File Writing
    $filenum=@fopen($filename,"w");
    if (!$filenum) {
        return false;
    }
    flock($filenum,LOCK_EX);
    $file_data=fwrite($filenum,$data);
    fclose($filenum);
    return true;
}
   
?>

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Previous article:笔记 PHP常用 语句Next article:php 隐藏图片链接