python json php
参考阅读: http://www.01happy.com/php-post-request-get-json- […]
人生没有原因,闯出一路精彩
参考阅读: http://www.01happy.com/php-post-request-get-json- […]
Mac 系统已经带有apache和PHP, 不用安装,只要配置。mysql和phpmyadmin要安装。 全程 […]
1 2 3 4 5 6 7 8 9 10 11 12 |
// 创建 $arr = array(); $arr = array("abc","def","kkk");// 省略了key,默认为整数键,从0开始,以1递增 $arr = array("allen"=>"abc", "peter"=>"def","keven"=>"kkk");//带key, 可用$arr["allen"]取值 // 判断 in_array($value, $arr); // 是否包含指定值,最慢 array_key_exists($key, $arr); // 是否包含指定key, 快 isset($arr[$key]);//是否存在, 最快 // 计算数组中的元素数目或对象中的属性个数 count($arr); |
3个判断函数的性能参考:http://mae […]
1 2 3 4 5 6 7 |
$today = date("Y-m-d");//今天 $firstDay = date("Y-m-01", strtotime($today));//本月第一天 $lastDay = date("Y-m-t", strtotime($today));//本月最后一天 $last = strtotime("-1 month", time());//上个月的今天 $lastFirstDay = date("Y-m-01", strtotime($last));//上个月第一天 $lastLastDay = date("Y-m-t", strtotime($last));//上个月最后一天 |
这里计算本月最后一天,用的”t& […]