码迷,mamicode.com
首页 >  
搜索关键字:find    ( 24186个结果
用php的strpos() 函数判断字符串中是否包含某字符串的方法
PHP strpos() 函数 strpos() 函数返回字符串在另一个字符串中第一次出现的位置。 如果没有找到该字符串,则返回 false。语法 strpos(string,find,start) 参数 描述string 必需。规定被搜索的字符串。find 必需。规定要查找的字符。st...
分类:Web程序   时间:2015-06-24 20:45:06    阅读次数:171
PHP set_exception_handler 设置异常处理函数
If you're handling sensitive data and you don't want exceptions logging details such as variable contents when you throw them, you may find yourself f...
分类:Web程序   时间:2015-06-24 18:05:20    阅读次数:148
thinkphp或者kohana 导入和读取文件
1.无论是那个框架的导入,其实都是一样的原理的,但是首先我们要导入包,可能就这点不同。kohana的导入包的方法:require_once(Kohana::find_file('vendor','PHPExcel/PHPExcel/IOFactory'));thinkphp的导入包的方法: req....
分类:Web程序   时间:2015-06-24 16:04:35    阅读次数:231
LeetCode120:Triangle
Given a triangle, find the minimum path sum from top to bottom. Each step you may move to adjacent numbers on the row below.For example, given the following triangle The minimum path sum from top to...
分类:其他好文   时间:2015-06-24 14:46:17    阅读次数:94
shell基础二:查找技巧,find及xargs的使用
使用find时,只要把想要的操作写在一个文件里,就可以用exec来配合find查找,很方便的 (在有些操作系统中只允许- e x e c选项执行诸如l s或ls -l这样的命令)。大多数用户使用这一选项是为了查找旧文件并删除它们...
分类:系统相关   时间:2015-06-24 13:07:32    阅读次数:215
mongodb时间戳转换成格式化时间戳
db.pay_order.find({"id":"5332336532"},{"tradeNo":true,"status":true,"create":true}).forEach(function (a) { a["create"] = (new Date(a["create"]).toString()); printjson(a) })...
分类:数据库   时间:2015-06-24 12:57:56    阅读次数:277
3Sum
1. Question给一个整型数组,找所有唯一的和为0的三个数的数对。相似的题有2SumGiven an array S of n integers, are there elements a, b, c in S such that a + b + c = 0? Find all unique ...
分类:其他好文   时间:2015-06-24 12:45:31    阅读次数:107
Linux学习日志--文件搜索命令
开头总结:              学习了Linux中的文件搜索命令find和locate,系统搜索命令whereis 和which ,字符串搜索命令grep,find和locate的区别和用法格式,什么是path环境变量以及其好处,whereis和which的用法,区别在于查询系统命令内容的不同,grep和find的区别,为什么要引入通配符? 什么情况下用通配符还是正则表达式? Loc...
分类:系统相关   时间:2015-06-24 11:00:00    阅读次数:216
[Leetcode]Two Sum
Given an array of integers, find two numbers such that they add up to a specific target number. The function twoSum should return indices of the two numbers such that they add up to the target, whe...
分类:其他好文   时间:2015-06-24 10:59:38    阅读次数:112
解决grep的结果无法显示文件名的问题
有时候想在代码中执行某个关键词,会用下面的语句:find . -type f -name "*.java" | xargs grep -n ""大部分情况下良好,但也有出问题的时候,比如某个目录中含有空格。那么检索这个目录下所有的文件都会报错。为此,需要改一下脚本,将路径放到引号中。find . -...
分类:其他好文   时间:2015-06-24 10:45:18    阅读次数:102
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!