码迷,mamicode.com
首页 >  
搜索关键字:filename    ( 7326个结果
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
c# | base64图片转文件
方法如下: public string Base64StringToFile(string base64String, string fileName) { //文件后缀 string suffix = ""; try { //文件保存路径 string fileFullPath = @"C:\Us ...
分类:Windows程序   时间:2021-04-19 15:00:59    阅读次数:0
正则表达式
grep grep 'word' filename.txt grep在进行搜索时,以行为单位进行处理 grep -n 代表显示行号 grep -v 代表反选择 grep -i 忽略大小写 grep 't[ea]st' 搜索test或tast grep '^goo' 搜索以goo开头的行 grep ' ...
分类:其他好文   时间:2021-04-19 14:54:38    阅读次数:0
7326条   上一页 1 ... 4 5 6 7 8 ... 733 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!