欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

PHP文件读写

程序员文章站 2022-04-16 22:07:13
...
  1. $handle = @ fopen ( "demo.txt" , "r" );
  2. if ( $handle ) {
  3. while (( $buffer = fgets ( $handle , 4096 )) !== false ) {
  4. echo $buffer ;
  5. }
  6. if (! feof ( $handle )) {
  7. echo "Error: unexpected fgets() fail\n" ;
  8. }
  9. fclose ( $handle );
  10. }
  11. echo '
    ';
  12. $length= readfile("demo.txt");
  13. echo '
    ';
  14. $file_str = 'demo.txt';
  15. if(file_exists($file_str))
  16. {
  17. echo file_get_contents($file_str);
  18. }
  19. ?>
复制代码

PHP
相关标签: PHP文件读写