码迷,mamicode.com
首页 >  
搜索关键字:missing filename ope    ( 9484个结果
Gvim操作记录
Linux环境下的gvim编辑器的优势就不多说了。至于我,一个字懒,不想记住gvim的指令,但一想到以后工作还是要用到,还是硬着头皮学吧! 1 gvim基本操作 1.1 基本模式 gvim 有两个基本的模式:Insert 和Normal。Insert模式下光标是竖线,这时键盘的输入为文本。Norma ...
分类:系统相关   时间:2021-05-04 16:26:16    阅读次数:0
CI 压缩zip中文乱码
几种情况: 1.window可以 liunx乱码 检查文件写入文件夹时已经是乱码 解决方法:写入文件的时候转码 iconv('utf-8', 'gb2312','中文名称'); 2.window乱码 检查文件写入文件夹时已经是乱码 如果不是乱码 把代码传到服务器上面测试 是否正常能导出中文 如果还是 ...
分类:其他好文   时间:2021-05-03 11:47:58    阅读次数:0
php 处理网站访问日志
<?php $r = tail('dd.ddmap.log','Baiduspider'); echo '<pre>'; print_r($r); echo '</pre>'; /** * @param $filename * @param false $num * @param int $n * ...
分类:Web程序   时间:2021-04-30 12:11:16    阅读次数:0
php写入文本,文件夹不存在则创建
// 安全文件路径,$fileName:完成文件路径 function securityFilePath($fileName,$read_write = '0777'){ $path = dirname($fileName); if(!file_exists($path)){// 判断路径是否存在, ...
分类:Web程序   时间:2021-04-29 11:54:35    阅读次数:0
Pandas数据处理
Pandas数据处理: 导?数据 导出数据 查看数据 数据选取 数据处理 数据分组和排序 数据合并 # 在使用之前,需要导入pandas库 import pandas as pd 导?数据: pd.DataFrame() # 自己创建数据框,用于练习 pd.read_csv(filename) # ...
分类:其他好文   时间:2021-04-28 12:19:39    阅读次数:0
常用工作命令集合
1. find . -regex '.*\.c\|.*\.cc' | xargs grep "string" --color --line-number 2. sed -n '5,10p' filename 查看文件的第5行到第10行。 3. grep -o hello test.log | wc ...
分类:其他好文   时间:2021-04-27 15:16:42    阅读次数:0
Sql批量替换字段字符,Sql批量替换多字段字符,Sql替换字符
update phome_ecms_news_check set filename= replace(filename,'Under4-',''); update phome_ecms_news_check set title= replace(title,'Under4 ',''); update ...
分类:数据库   时间:2021-04-24 13:52:11    阅读次数:0
保存路由器配置
copy running-config startup-config 重启后保存的配置不会重置。 test#copy running-config startup-config Destination filename [startup-config]? Building configuration ...
分类:其他好文   时间:2021-04-24 13:28:32    阅读次数:0
Nginx Windows详细安装部署教程
1、下载nginx包 直接去官网下载:http://nginx.org/en/download.html 2、下载完成后,在指定位置解压缩,不要直接双击nginx.exe。 3、运行cmd,进入解压的指定目录下 4、启动nginx服务,启动命令为:start nginx,启动时会一闪而过是正常的 5 ...
分类:Windows程序   时间:2021-04-23 11:54:40    阅读次数:0
在控制台保存下载数据文件方法
1.在控制台输入js代码: (function (console) { console.save = function (data, filename) { let MIME_TYPE = "text/json"; if (!data) return; if (!filename) filename ...
分类:其他好文   时间:2021-04-22 15:33:13    阅读次数:0
9484条   上一页 1 ... 5 6 7 8 9 ... 949 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!