码迷,mamicode.com
首页 >  
搜索关键字:file_exists    ( 315个结果
centos7 重启网卡报错
systemctl restart network 时候报错: rtnetlink answers file exists 是network和NetworkManager冲突了 一般建议直接 systemctl stop NetworkManager systemctl disable Networ ...
分类:其他好文   时间:2017-11-08 19:41:25    阅读次数:235
tp5封装 phpexecl引入和调用类的封装以及调用
composer安装phpexeclcomposerrequirephpoffice/phpexcel<?phpnamespacePotting;usePHPExcel;usePHPExcel_IOFactory;classExcel{ staticpublicfunctionexport($headArr,$data){ $path=‘execl/‘; $fileName=time(); if(!file_exists($path)){ mkdir($path,0777,true); } $..
分类:Web程序   时间:2017-11-06 23:05:43    阅读次数:446
php读写文件实现刷新页面数字加一
$filename = './count.txt'; //第一步:创建文件并初始化为0; if(!file_exists($filename)){ //打开方式"w",文件不存在,则创建之 $handle = fopen($filename, 'w'); fwrite($handle, 0);//将... ...
分类:Web程序   时间:2017-11-05 14:30:29    阅读次数:242
php最快捷的插入数据,3000万仅需5秒
<?phpheader('content-type:text/html;charset=utf-8');//采集数据$url="http://www.keepclub.com/club/environ/";if(file_exists('aa.txt')){ $data=file_get_conte ...
分类:Web程序   时间:2017-11-01 12:12:41    阅读次数:249
crond dead but pid file exists 问题解决办法
之前写过一个定时关机的crontab,后来关掉之后发现还是每天定时关机 查看crontab状态 提示报错: crond dead but pid file exists 解决过程 ps -ef | grep crond 以及把进程杀死 查看还是有该报错 尝试把进程文件删除掉 查看还是有该报错 然后, ...
分类:其他好文   时间:2017-10-26 15:31:29    阅读次数:398
git Bush应用崩溃If no other git process is currently running, this probably means a git process crashed
用git Bush提交的时候遇到一个问题,不论做什么操作都遇到下面的错误信息 fatal: Unable to create 'XXXXXXXXX' : File exists. If no other git process is currently running, this probably ...
分类:其他好文   时间:2017-10-24 17:21:45    阅读次数:190
.net中错误日志的写入
18 public static void SaveError(Exception ex,HttpContext hc,HttpRequest hr)19 {20 string temp ;21 StreamWriter sw ;2223 //如果存在文件24 if(File.Exists(hr.P ...
分类:Web程序   时间:2017-09-25 13:10:33    阅读次数:223
PHP拷贝目录下的所有文件
//目录拷贝函数到任意目录function dir1($filename,$dest){ static $dirname; $dirname.=$dest; //连接头(第一层目录) static $dir; //中间变量 if(file_exists($filename)){ //如果文件存在 i ...
分类:Web程序   时间:2017-09-20 17:58:03    阅读次数:193
PHP核心编程--目录操作(包含文件操作)
一.目录操作 1. 创建目录 创建目录mkdir(目录名称) //返回值为布尔 一次性创建主目录及其子目录 判断是不是一个目录is_dir //返回true,false 判断目录或文件是否存在file_exists //返回值为布尔 返回路径中的目录部分 dirname 2. 打开目录, opend ...
分类:Web程序   时间:2017-09-10 01:18:21    阅读次数:373
centos7 无法启动网络(service network restart)错误解决办法
systemctl status network.service 出现以下错误“rtnetlink answers file exists” 的解决方法和 NetworkManager 服务有冲突,这个好解决,直接关闭 NetworkManger 服务就好了。service NetworkManag ...
分类:Web程序   时间:2017-09-02 21:50:13    阅读次数:331
315条   上一页 1 ... 7 8 9 10 11 ... 32 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!