Home  >  Article  >  Backend Development  >  Explain the example code for creating files in PHP_PHP tutorial

Explain the example code for creating files in PHP_PHP tutorial

WBOY
WBOYOriginal
2016-07-13 17:40:51898browse

Explain the example code for creating files in php:

  1. $data =date("Ymd");
  2. $dir ="/hom/kyle/file/$data";
  3. $filename ="/home/kyle/file/$data/testfile";
  4. $filecontent ="This is what to write The entered content tests the space ";
  5. //Determine whether the folder exists, otherwise create it
  6. if(!is_dir($dir)){
  7. mkdir($dir ,0777);
  8. }
  9. //Determine whether the file exists, otherwise create it
  10. if(!file_exists($filename)){ $handle=fopen($filename, w);
  11. if(!$handle){
  12. echo create file fail;
  13. exit;
  14. }else{
  15. chmod($filename,0777);
  16. }
  17. if(fwrite($handle, $filecontent) === FALSE) {
  18. echo "cant write into $filename ";
  19. exit;
  20. }
  21. fclose($handle);
  22. }
  23. ?>

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/486174.htmlTechArticleExplains the example code for creating files in PHP: ?php $data =date("Ymd"); $dir ="/ hom/kyle/file/$data"; $filename ="/home/kyle/file/$data/testfile"; $filecontent ="This is the content to be written to test...
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