/** * 判断一个坐标是否在圆内 * 思路:判断此点的经纬度到圆心的距离 然后和半径做比较 * 如果此点刚好在圆上 则返回true * @param $point ['lng'=>'','lat'=>''] array指定点的坐标 * @param $circle array ['center'=>['lng'=>'','lat'=>''],'radius'=>''] 中心点和半径 */ function is_point_in_circle($point, $circle){ $distance = $this -> distance($point['lat'],$point['lng'],$circle['center']['lat'],$circle['center']['lng']); if($distance <= $circle['radius']){ return true;
/** * 检验手机号码 */ if (!function_exists('check_phone_number')) { function check_phone_number($phone_number) { //中国联通号码:130、131、132、145(无线上网卡)、155、156、185(iPhone5上市后开放)、186、176(4G号段)、175(2015年9月10日正式启用,暂只对北京、上海和广东投放办理),166,146 //中国移动号码:134、135、136、137、138、139、147(无线上网卡)、148、150、151、152、157、158、159、178、182、183、184、187、188、198 //中国电信号码:133、153、180、181、189、177、173、149、199 $g = "/^1[34578]\d{9}$/"; $g2 = "/^19[89]\d{8}$/"; $g3
/** * 几秒几天前,时间转换 * @return string */ if (!function_exists('format_time_ago')) { function format_time_ago($date) { if(is_numeric($date)){ $timer = $date; }else{ $timer = strtotime($date); } $diff = $_SERVER['REQUEST_TIME'] - $timer; $day = floor($diff / 86400); $free = $diff % 86400; if ($day > 0) { return $day . "天前"; } else { if ($free > 0) {
定义前: http://doamin/index.index/index http://doamin/admin.index/index Route::rule(':version/:controller/:action',':version.:controller/:action'); 定义后: http://doamin/index/index/index http://doamin/admin/index/index
1.注意事项服务器web服务必须是nginx,apache暂未做适配,php必须以php-fpm启动,即LNMP才支持,LNAMP和LAMP不支持。服务器同时安装了php5.6和php7.1,php5.6和php7.1已经同时启动。2.开始配置修改nginx配置文件宝塔站点管理点击您想配置的站点,选择配置文件,我们先将33行左右的include enable-php-xx.conf前加#注释掉然后加入如下代码location ~ [^/]\.php(/|$) { fastcgi_pass unix:/tmp/php-cgi-71.sock; fastcgi_index index.php; include fastcgi.conf; include pathinfo.conf; if ($request_uri ~* "ndot_ladderbuy"){ fastcgi_pass unix:/tmp/php-cgi-72.so
柚子生活
一个很懒的人