You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
256 B

  1. <?php
  2. $file = "./file";
  3. //判断文件是否存在
  4. $ret = file_exists($file);
  5. echo $ret.'<br>';
  6. //打开文件
  7. $ret = fopen($file,"r");
  8. echo $ret.'<br>';
  9. //关闭文件
  10. $ret = fclose($ret);
  11. echo $ret.'<br>';
  12. ?>