VB.net 2010 视频教程 VB.net 2010 视频教程 python基础视频教程
SQL Server 2008 视频教程 c#入门经典教程 Visual Basic从门到精通视频教程
当前位置:
首页 > PHP >
  • php判断文件是否存在file_exists 与 is_file详解

$file ='新建文本文档.txt';

  1. $file1 ='a.txt'
  2. list($name,$ext) = explode('.',$file); 
  3. echo $name
  4.  
  5. ifis_file$name.'.txt' ) ) 
  6.  echo 'file存在'
  7. iffile_exists$file1 ) ) 
  8.  echo 'file1存在'
出处:http://www.phpfensi.com/php/20131129/586.html

相关教程