E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
file_exists
php删除文件操作
为了完美的操作,首先要判断一下这个路径的文件是否存在,用
file_exists
函数。如若存在,则去删除文件。具体代码如下: if(file_ex
·
2015-10-23 08:51
文件操作
php实现文件下载
file_exists
($file_dir . $file_name)) { //检查文件是否存在 echo "文件找不到"; exit; }
·
2015-10-21 13:59
文件下载
授人以鱼不如授人以渔,UCHome全面大解析培训活动【第三集】
file_exists
( $objfile )) { &nbs
·
2015-10-21 11:53
home
PHP文件缓存类
代码如下:ClassFileCache{Publicfunctioncache($filename,$expire,$table,$sql){//有缓存就用,没有就创建if(
file_exists
($filename
山水云
·
2015-10-12 14:22
PHP
php基础 一(20150925)
第一种特殊类型—资源文件if(
file_exists
("test.txt")){//判断文件是否存在 echo'filetext.txtexists'; }else{ echo'filetext.txtdoesn
To_yan
·
2015-09-26 01:00
PHP
PHP中
file_exists
与is_file,is_dir的区别
在php中
file_exists
与is_file,is_dir都可以用来检测目录或文件是否存在了,那么它们三者的具体区别在哪里呢,下面我们一起来看看吧。
ykhs7
·
2015-09-15 13:42
php文件函数
解压上传的文本文件压缩包并将解压后的文本文件内容插入到数据库
$content = file_get_contents($_FILES["file"]["tmp_name"]); $ret->content = $content; if (
file_exists
(
AlanCooper
·
2015-09-09 12:00
PHP
文件解压
大批量数据插入数据库
PHP下载文件(隐藏真实的下载地址)
file_exists
($file_dir.$file_name)){//检查文件是否存在 echo"文件未找到";
江上轻烟
·
2015-08-31 20:00
php下载
php文件上传功能
""; } if(
file_exists
("/var/www/".$_FILES['user
chinabhlt
·
2015-08-26 14:00
PHP
jqm实现本地图片上传
. ""; } else { if (
file_exists
("upload/" .
fantasticbaby
·
2015-08-11 21:00
php
file_exists
() 的速度测试
系统:ubuntu14.04 32位 内存:3.7GiB 处理器:Intel®Pentium(R)
[email protected]
×2第0步:生成100万个文件$ touch a{1..1000000} // 理论上这样就搞定了,但是提示列表太长,改成10万没问题,那就执行10次咯 $ touch a{1..100000} $ touch b{1..100000} ... $
sskill
·
2015-07-31 17:00
Predis的一些操作汇总
$class.'.php'; if (
file_exists
($file)) { require $file; re
yuxianhua
·
2015-07-17 15:00
redis
Predis的一些操作汇总
$class.'.php'; if (
file_exists
($file)) { require $file; re
yuxianhua
·
2015-07-17 15:00
redis
php zip压缩文件和下载
file_exists
($fileName)){ $zip->open(
人之初
·
2015-07-09 10:00
php中错误和异常处理的机制一
file_exists
("aaa.txt")){ //die()函数
u013372487
·
2015-07-07 17:00
Moodle: 查询任意数据库
file_exists
('../../config.php')) { header('Location: ../..
天梯梦
·
2015-07-07 12:00
数据库
Moodle: 查询任意数据库
file_exists
('../../config.php')) { header('Location: ../..
天梯梦
·
2015-07-07 12:00
数据库
Moodle: 查询任意数据库
file_exists
('../../config.php')) { header('Location: ../..
天梯梦
·
2015-07-07 12:00
数据库
Moodle: 查询任意数据库
file_exists
('../../config.php')) { header('Location: ../..
天梯梦
·
2015-07-07 12:00
数据库
Moodle: 查询任意数据库
file_exists
('../../config.php')) { header('Location: ../..
天梯梦
·
2015-07-07 12:00
数据库
Moodle: 查询任意数据库
file_exists
('../../config.php')) { header('Location: ../..
天梯梦
·
2015-07-07 12:00
数据库
PHP根据图片色界在不同位置加水印的方法
具体实现方法如下:functionadd_wm($nmw_water,$src_file,$output_file,$x,$y){if(
file_exists
($output_file))return;
不是JS
·
2015-07-01 12:05
PHP实现HTTP断点续传的方法
file_exists
($real)) { r
mocha
·
2015-06-26 10:00
php异常处理方法实例汇总
file_exists
($path))//如果文件无法找到,抛出异常对象{thrownewException("文件无法找到",1);}if(!
zhuzhao
·
2015-06-24 10:43
php文件压缩之PHPZip类用法实例
is_array($dir))&&(
file_exists
($dir)))chdir($dir);elsechdir($curdir);if(count($filelist)>0){foreach($filelistas
疯狂的流浪
·
2015-06-18 11:44
PHP实现HTTP断点续传的方法
file_exists
($rea
邪恶的小Y
·
2015-06-17 17:07
PHP实现在线阅读PDF文件的方法
file_exists
($fi
邪恶的小Y
·
2015-06-17 17:32
php学习之基础五 错误处理
file_exists
("welcome.txt")) { die("Filenotfound"); } else { $file=fopen("welcome.txt","r"); }2.创建自定义错误处理器创建一个自定义的错误处理器非常简单
nanshan_hzq
·
2015-06-02 10:00
predis使用之php代码说明
$class.'.php'; if (
file_exists
($file)) { require $file; return true; }}); /
zqtsx
·
2015-04-30 11:00
redis
predis
predis详解
PHP使用内置dir类实现目录遍历删除
具体实现方法如下:functionclearDir($dir){if(
file_exists
($dir)){if(!
dingding
·
2015-03-31 10:24
使用PHP自带zlib函数 几行代码实现PHP文件打包下载zip
TRUE) { exit('无法打开文件,或者文件创建失败'); } foreach( $datalist as $val){ if(
file_exists
china008
·
2015-03-26 13:00
file_exists
与is_file、is_dir
确定是文件时用is_file确定是目录时用is_dir不确定是用
file_exists
不存在的文件或目录比较多时
file_exists
效率高,不然就不要用
biorelive
·
2015-03-18 09:00
php中file_exits和is_files函数的性能分析
php $st = microtime(true); for($i = 0;$i<5000;$i++){ echo
file_exists
('./test/456.tx
cloes
·
2015-03-04 14:00
yyuc视图未更新,控制器修改可以看到,视图无法更新,提示Allowed memory size of exhausted
privatefunction_getViewHtml($wrap_path){if(
file_exists
($wrap_path.'
enotswn
·
2015-02-12 18:00
redis在PHP中的基本使用案例
$class.’.php’; 4 if (
file_exists
($file)){ 5 require $file; 6 return true; 7 } 8
信息小子
·
2015-01-25 12:38
数据库
return
function
server
require
redis在PHP中的基本使用案例
$class.’.php’; 4 if (
file_exists
($file)){ 5 require $file; 6 return true; 7 } 8
信息小子
·
2015-01-25 12:38
数据库
return
function
server
require
PHP读写INI文件
读INI文件 public function readini($name) { if (
file_exists
(SEM_PATH.'init/'.
·
2014-12-25 18:00
PHP
PHP 生成一张图片的两种方法
logo privatefunctiongeneration_default_img($width,$height,$img_type,$output_url) { //检查默认logo是否存在 if(
file_exists
littlebo01
·
2014-12-08 15:00
EC-FLASH获得XML文件
function get_flash_xml() { $flashdb = array(); if (
file_exists
(ROOT_PATH . DATA_DIR .
陈映亮
·
2014-11-11 14:00
php 图片批量下载
file_exists
($path)){ mkdir($path,0777); } for($i=0;$i
a771948524
·
2014-11-08 09:00
PHP单例模式实现数据库连接
/config.php'; private static $_instance; private function __construct() { if (
file_exists
Nixus
·
2014-11-05 11:00
PHP
单例模式
图片上传处理
file_exists
($path)) {
陈映亮
·
2014-10-05 10:00
借助幕课网的资源重新梳理下PHP基础知识,用以备忘。
PHP中有很多这类的检查方法,例如文件是否存在
file_exists
铭记北宸
·
2014-09-26 09:01
php
Code
分割大文件和合并文件的源代码
$num++.'.dat';32 if(
file_exists
($cacheFile)){33 $cfile=fopen($cacheFile,'rb');34 $content
小果果x
·
2014-09-25 17:00
每日总结
$file_name; $file_path=iconv('UTF-8','GBK',$file_path); if (
file_exists
($file_path)) { .... }2.
oume
·
2014-09-14 19:52
iconv
php自动转换pfx到pem和cer(dem格式)到pem
file_exists
($filePath)){ returnfalse; } $pkcs12=file_get_contents($filePath);
jennefer
·
2014-08-16 17:47
return
function
false
php自动转换pfx到pem和cer(dem格式)到pem
file_exists
($filePath)){returnfalse;}$pkcs12=file_get_contents($filePath);if(openssl_pkcs12_read($pkcs12
jennefer
·
2014-08-16 17:47
return
function
false
php
PHP递归拷贝(模拟linux的cp命令的行为)
file_exists
($
canlynet
·
2014-08-12 11:00
linux
PHP 弹出文件下载 原理 代码
file_exists
($file_path)){echo"alert('对不起!该文
用户昵称不能为空
·
2014-08-09 06:04
PHP
PHP文件下载
file_exists
($path)){//检测文件是否存在 echo"文件不存在!"
tomyjohn
·
2014-08-07 10:00
上一页
4
5
6
7
8
9
10
11
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他