public function download($currdir = null){ $file = urldecode($currdir); $file = iconv('UTF-8', "GB2312", $file); if (!file_exists($file)) { $this->err ...
分类:
Web程序 时间:
2018-05-24 18:18:08
阅读次数:
223
<?phpheader("Content-type: text/html; charset=utf-8"); try{$aaa = 0;if ($aaa == 9) {echo 9999;} else {throw new Exception('file is not exists');}} cat ...
分类:
其他好文 时间:
2018-04-13 13:23:16
阅读次数:
159
写入内容 string userfile = "UserData.txt"; StreamWriter sw = null; //判断是否存在 if (!System.IO.File.Exists(System.Web.HttpContext.Current.Server.MapPath(@"../ ...
分类:
Web程序 时间:
2018-04-03 15:20:50
阅读次数:
166
常见报错注释1. command not found 命令没有找到2. No such file or directory 没有这个文件或目录3. Permission denied 权限不足4. No space left on device 磁盘没有剩余空间5. File exists 文件已经 ...
分类:
系统相关 时间:
2018-03-30 19:55:04
阅读次数:
204
git 提交时失败 提示如下错误:fatal: Unable to create 'E:/job/tpaas-web/.git/index.lock': File exists. 解决方法:删除.lock文件 rm -f ./.git/index.lock命令执行后再次 git pull 即可 rm ...
分类:
Web程序 时间:
2018-02-24 23:07:24
阅读次数:
326
Java 写文件实现换行 第一种: 写入的内容中利用\r\n进行换行 File file = new File("D:/text"); try { if(!file.exists()) file.createNewFile(); FileOutputStream out=new FileOutput ...
分类:
编程语言 时间:
2018-02-01 19:21:30
阅读次数:
205
File类:即能代表一个特定文件的名称,又能代表一个目录下的一组文件的名称。File类也可以用来创建新的目录。File file = new File( "D:/test.txt"); file.exists(); File file2 = new File( "D:/mkdi
分类:
编程语言 时间:
2018-02-01 18:28:19
阅读次数:
228
/** * 获取图片的Base64编码(不支持url) * @param $img_file 传入本地图片地址 * @return string */ function imgToBase64($img_file) { $img_base64 = ''; if (file_exists($img_f... ...
分类:
Web程序 时间:
2018-01-08 12:19:17
阅读次数:
143
目前在弄文件缓存的时候用到了判定文件存在与否,is_file()还是file_exists()呢?is_file和file_exists两者效率比较起来,谁的运行速度更快呢?还是做个测试吧: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 ...
分类:
其他好文 时间:
2017-12-24 11:19:37
阅读次数:
90
/// <summary> /// 打开图片,仅支持jpg /// </summary> private Image OpenImage(string imagePath) { if (!File.Exists(imagePath)) { return null; } string extensio ...
分类:
其他好文 时间:
2017-11-27 11:09:32
阅读次数:
126