首頁 >後端開發 >php教程 >symantecpcanywhere php SQL之where語句產生器

symantecpcanywhere php SQL之where語句產生器

WBOY
WBOY原創
2016-07-29 08:39:431122瀏覽

複製程式碼 程式碼如下:


//產生where字串
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 .= "和 $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 .= " 和 $key = $val " ;
}
}
}
return $where;
}

以上就介紹了symantecpcanywhere php SQL之where語句產生器,包含了symantecpcanywhere方面的內容,希望對PHP教程有興趣的朋友有所幫助。

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn