上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 21 下一页
摘要: composer直接下载是特别慢的,拿ci框架为例,看下图: 注意框里的那一段: "repositories": { "packagist": { "type": "composer", "url": "https://packagist.phpcomposer.com" } 复制到composer 阅读全文
posted @ 2018-11-22 17:11 yahn~ 阅读(383) 评论(0) 推荐(0) 编辑
摘要: <?php //连接mongodb $manager = new MongoDB\Driver\Manager("mongodb://localhost:27017"); //查询条件 $filter = ['user_id'=>['$gt'=>'0']];//查询条件,userid大于0 也可以为 阅读全文
posted @ 2018-11-22 14:57 yahn~ 阅读(516) 评论(0) 推荐(0) 编辑
摘要: 首先说一下扩展,mongodb提供了两种,php5和php7,所以选择了php7的扩展。 使用pcel安装mongoDB扩展: 1,首先到PHP7的安装目录,我的安装目录是: $ /Applications/MAMP/bin/php/php7.1.1/bin/pecl install mongodb 阅读全文
posted @ 2018-11-21 13:41 yahn~ 阅读(807) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2018-11-21 11:40 yahn~ 阅读(333) 评论(2) 推荐(0) 编辑
摘要: <?php header("content-type:text/html;charset=utf-8"); /***@param $string目标字符串*@param $key 加密key*@return string */function encryption($string="",$key=" 阅读全文
posted @ 2018-11-20 17:40 yahn~ 阅读(1992) 评论(0) 推荐(0) 编辑
摘要: <?php header("Content-type:text/html;charset=utf-8"); //PC百度搜索 $key = "澳门金沙"; $url = 'http://www.baidu.com/s?word='.$key."&rn=50"; function curl_list( 阅读全文
posted @ 2018-11-20 09:37 yahn~ 阅读(199) 评论(0) 推荐(0) 编辑
摘要: <?phpclass MyRedis{ private static $handler; private static function handler(){ if(!self::$handler){ self::$handler = new Redis(); self::$handler -> c 阅读全文
posted @ 2018-11-19 14:28 yahn~ 阅读(404) 评论(0) 推荐(0) 编辑
摘要: PHP ci 框架自定义的函数可以放在helpers目录下,在config文件下面的autoload.php文件里,数组$autoload['helper'] = array('url','form','cookie','date','my_array_helper');加上即可。如图所示: 阅读全文
posted @ 2018-11-14 15:18 yahn~ 阅读(387) 评论(0) 推荐(0) 编辑
摘要: 命令运行: 修改系统配置:系统偏好设置->安全性与隐私,修改为任何来源,如果没有的话执行以下命令: sudo spctl --master-disable //然后输入密码 sudo spctl --master-disable Rference 再打开app,就可以打开了 阅读全文
posted @ 2018-11-12 10:32 yahn~ 阅读(348) 评论(0) 推荐(0) 编辑
摘要: failed to push some refs to 报错解决方法:这个错误很大原因是github 仓库中的readme.md文件不在本地代码目录中,通过以下代码合并git pull --rebase origin master 这个时候就可以在本地文件中看到readme.md文件,之后再运行gi 阅读全文
posted @ 2018-11-08 11:22 yahn~ 阅读(2439) 评论(0) 推荐(1) 编辑
上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 21 下一页