码迷,mamicode.com
首页 >  
搜索关键字:MIXED    ( 640个结果
PHP两种实现无级递归分类的方法
/** * 无级递归分类 TP框架 * @param int $assortPid 要查询分类的父级id * @param mixed $tag 上下级分类之间的分隔符 * @return string $tree 返回的分类树型结构结果 * */ function recursiveAssort(... ...
分类:Web程序   时间:2017-03-02 16:36:26    阅读次数:157
Git-回滚操作
git revert是用一次新的commit来回滚之前的commit,git reset是直接删除指定的commit git log 查询回滚版本唯一commit标识代码 git reset --hard HEAD~3 会将最新的3次提交全部重置,就像没有提交过一样。 --mixed git res ...
分类:其他好文   时间:2017-02-13 21:23:34    阅读次数:150
文件系统扩展函数pathinfo()
pathinfo — 返回文件路径的信息 mixed pathinfo ( string $path [, int $options = PATHINFO_DIRNAME | PATHINFO_BASENAME | PATHINFO_EXTENSION | PATHINFO_FILENAME ] ) ...
分类:其他好文   时间:2017-02-12 01:16:46    阅读次数:230
memcache缓存函数方法详解
1.Memcache::add用法 代码:bool Memcache::add ( string $key , mixed $var [, int $flag [, int $expire ]] ) 说明: 如果$key不存在的时候,使用这个函数来存储$var的值。功能相同的函数是memcache_ ...
分类:系统相关   时间:2017-02-11 23:46:56    阅读次数:244
thinkphp-join
语法join(mixedjoin[,mixed$condition=null[,string$type=‘INNER‘]])示例别名Db::table(‘think_artist‘) ->alias(‘a‘) ->join(‘think_workw‘,‘a.id=w.artist_id‘) ->join(‘think_cardc‘,‘a.card_id=c.id‘) ->select();Db::table(‘think_artist‘) ->alias(‘a‘) -..
分类:Web程序   时间:2017-02-10 00:08:12    阅读次数:205
preg_replace_callback函数
定义和用法执行一个正则表达式搜索并且使用一个回调进行替换语法preg_replace_callback(mixed$pattern,callable$callback,mixed$subject[,int$limit=-1[,int&$count]])参数解析参数描述pattern要搜索的模式,可以是字符串或一个字符串数组callback一个回调函数,在每次需要..
分类:其他好文   时间:2017-02-09 16:38:37    阅读次数:123
PHP isset()与empty()的使用区别详解
PHP的isset()函数 一般用来检测变量是否设置 格式:bool isset ( mixed var [, mixed var [, ...]] ) 功能:检测变量是否设置 返回值: 若变量不存在则返回 FALSE 若变量存在且其值为NULL,也返回 FALSE 若变量存在且值不为NULL,则返 ...
分类:Web程序   时间:2017-02-09 10:54:02    阅读次数:172
iOS 使用系统相机、相册显示中文
在调用系统相机时,"cancel" 改为"取消",调用系统相册时,"photos" 改为 "相机",方法如下: 1.在 info.plist 添加 Localized resources can be mixed 并设值为YES 表示是否允许应用程序获取框架库内语言。 2.在info.plist 中 ...
分类:移动开发   时间:2017-02-04 16:18:22    阅读次数:267
Kattis - mixedfractions
Mixed Fractions Mixed Fractions Mixed Fractions You are part of a team developing software to help students learn basic mathematics. You are to write ...
分类:其他好文   时间:2017-01-12 21:03:45    阅读次数:251
webView在5.0以上手机加载网页不显示图片
if(Build.VERSION.SDK_INT>Build.VERSION_CODES.LOLLIPOP){ webSettings.setMixedContentMode(WebSettings.MIXED_CONTENT_ALWAYS_ALLOW); }
分类:移动开发   时间:2017-01-12 03:18:06    阅读次数:266
640条   上一页 1 ... 35 36 37 38 39 ... 64 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!