PHP
ubuntuphp
这个作者很懒,什么都没留下…
展开
-
PHP break
breakbreak 结束当前 for,foreach,while,do-while 或者 switch 结构的执行。break 可以接受一个可选的数字参数来决定跳出几重循环。<?php$arr = array('one', 'two', 'three', 'four', 'stop', 'five');while (list (, $val) = each($arr)) { if (...原创 2018-05-18 09:16:21 · 233 阅读 · 0 评论 -
PHP foreach for 嵌套操作
循环套循环套循环 里面的变量不能一样 比如$k $v$arr = array('a','b','c','d','e');$html = '';foreach($arr as $key => $value){ if($value=='b'){ $html .= $value; continue; // 当 $value为b时,跳出本次循环 }...原创 2018-05-18 09:18:04 · 2037 阅读 · 0 评论 -
PHP 导出数据 EXCEL表格
public function exportOrderSectionFile() { if(IS_GET) { $request = $this->requests; $map['dor.status'] = 1; $where['status'] = 1; ...原创 2018-05-18 09:25:16 · 165 阅读 · 0 评论 -
数据库查询时间段 查询时间段内订单操作
// 数据库日期函数 查规定时间段内是否有记录 $map['_string'] = "doe.order_id is not null AND oe.order_id is not null AND (((UNIX_TIMESTAMP(oe.send_at)<='".$rent_start_date."')AND(UNIX_TIMESTAMP(oe.receive_at...原创 2018-05-18 09:27:58 · 1635 阅读 · 0 评论 -
PHP 解决后台接受到数据为数字0时 0 empty() 判断为空
判断传过来是否为空或者0 if(!is_numeric($request['delivery_days'])) { $this->returnInfo(0, '发货快递天数不能为空'); }原创 2018-05-18 09:30:45 · 8429 阅读 · 0 评论 -
PHP continue 操作 后面加参数 可以选择跳出几重循环
continue 在循环结构用用来跳过本次循环中剩余的代码并在条件求值为真时开始执行下一次循环。Note: 注意在 PHP 中 switch 语句被认为是可以使用 continue 的一种循环结构。continue 接受一个可选的数字参数来决定跳过几重循环到循环结尾。<?phpwhile (list ($key, $value) = each($arr)) { if (!($key %...转载 2018-05-18 09:40:33 · 596 阅读 · 0 评论