万能单条件查询函数,如代码。
函数Getx2x有四个参数:
第一个参数[必须]为表名;
第二个参数[必须]为字段名;
第三个参数[必须]为所查询字段的值。
第四个参数[可选]为所查询的字段名,未填默认为'id'。
//例子1:
//要查询think_user表中,id=12的用户名:
$username=Getx2x('User','username','12');
//或
$username=Getx2x('User','username','12','id');
注:此时$u
函数代码请放于位于项目目录下Common/Common.php中//万能单条件查询函数,由lisan制作<br>
function Getx2x($table,$fields,$id,$str){<br>
$aa=M($table);<br>
if(empty($str)){<br>
$expression='getByid';<br>
}else{<br>
$expression='getBy'.$str;<br>
}<br>
$thisaa=$aa->field($fields)->$expression($id);<br><br>
$bb=explode(',',$fields);<br>
if(count($bb)
return $thisaa[$fields];<br>
}else{<br>
return $thisaa;<br>
} <br>
}
AD:真正免费,域名+虚机+企业邮箱=0元
每个人都需要一台速度更快、更稳定的 PC。随着时间的推移,垃圾文件、旧注册表数据和不必要的后台进程会占用资源并降低性能。幸运的是,许多工具可以让 Windows 保持平稳运行。
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号