PHP array dynamically adds implementation code (price sorting of the most popular group buying system)_PHP tutorial

WBOY
Release: 2016-07-21 15:21:55
Original
794 people have browsed it

核心代码如下:

复制代码 代码如下:

$now=time();
$oc = array(
'team_type' => 'normal',
"begin_time < '{$now}'",
"end_time > '{$now}'",
);
$p="p2";
$pp1="";
$pp2="";
$now = time();
switch ($p)
{
case "p1":
$pp1="team_price < 10";
$pp2="";
break;
case "p2":
$pp1="team_price > 10";
$pp2="team_price < 50";
break;
case "p3":
$pp1="team_price > 50";
$pp2="team_price < 100";
break;
case "p4":
$pp1="team_price > 100";
$pp2="team_price < 200";
break;
case "p5":
$pp1="team_price > 200";
$pp2="";
break;
default:
$pp1="";
$pp2="";
}
if(!empty($pp1)){
array_push($oc,$pp1);
}
if(!empty($pp2)){
array_push($oc,$pp2);
}
print_r($oc);

?>

因为是多条件查询所以需要先判断是否为空,然后再添加到数组里面。

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/324794.htmlTechArticle核心代码如下: 复制代码 代码如下: ?php $now=time(); $oc = array( 'team_type' = 'normal', "begin_time '{$now}'", "end_time '{$now}'", ); $p="p2"; $pp1=""; $pp2=""; $now...
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!