- 2017/07/12
- |
- 日志
- |
- Views: 16,856
- |
- 1 Replies
<script>$b=$("#b");$("#show").on({"click":function(){$b.toggle();return false}});$(document).on({"click":function(e){var src=e.target;if(src.id&&src.id==="b"){return false}else{$b.hide()}}});</script>
<a id="show" ...
- 2017/07/03
- |
- 日志
- |
- Views: 8,548
- |
- 0 Replies
PHP date("Y-m-d H:i:s",time());date时间格式:date("Y-m-d H:i:s"); 显示的格式: 年-月-日 小时:分钟:秒a - "am" 或是 "pm"A - "AM" 或是 "PM"d - 几日,二位数字,若不足二位则前面补零; 如: "01" 至 "31"D - 星期几,三个英文字母; 如: "Fri"F - 月份,英文全名; 如: "January"h - 12 小时制的小时; 如: "01" 至 "12"H - 24 小时制的小时; 如: "00" 至 "23"g - 12 小时制的小时,不足二位不补零; 如: "1" 至 12"G - ...
- 2017/07/01
- |
- 日志
- |
- Views: 8,098
- |
- 0 Replies
function sent_tjcg($id,$userid,$title,$bslb) {
//发送提交成功给提交者
$ACCESS_TOKEN=accessToken();
$f_url="http://xxxxxxxxxxx.php?id=".$id;
$remark="申请事项:".$title."\n点击随时查看办事进度。";
$data=array(
'touser'=>get_openid($userid),
'template_id'=>"Cbivn3X44mwS4q_1...
- 2017/07/01
- |
- 日志
- |
- Views: 9,493
- |
- 0 Replies
function getJson($url){
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, FALSE);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$output = curl_exec($ch);
curl_close($ch);
return json_decode($output, t...