Home  >  Article  >  Backend Development  >  php SQL where statement generator_PHP tutorial

php SQL where statement generator_PHP tutorial

WBOY
WBOYOriginal
2016-07-21 15:46:56930browse

Copy code The code is as follows:

//Generate where string
function get_where($arg = null) {
foreach ((array)$arg as $key => $val) {
if(is_int($key)) {
$where .= " $val ";
}else {
if(is_string($val)) {
if($val === null) {
$where .= " and $key is null ";
}else {
$where .= " and $key = '$val' ";
}
}elseif(is_array($val)) {
foreach ($val as $v) {
if(is_string($v) ) {
$in .= $in ? ",'$v'" : "'$v'";
}else {
$in .= $in ? ",$v" : " $v";
}
}
$where .= " and $key in ($in)";
}else {
$where .= " and $key = $val ";
}
}
}
return $where;
}

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/320031.htmlTechArticleCopy code The code is as follows: //Generate where string function get_where($arg = null) { foreach ((array )$arg as $key = $val) { if(is_int($key)) { $where .= " $val "; }else { if(is_stri...
Statement:
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