发布网友 发布时间:2024-09-05 08:17
共3个回答
热心网友 时间:2024-09-30 12:52
你这个貌似是查询数据库的条件,但是说明你是直接使用php还是采用了开发框架比如thinkphp?
假若是后者,那可以是
$where = array("usname"=>array('neq','1'));热心网友 时间:2024-09-30 12:48
$where = array("usname !="=>'1');热心网友 时间:2024-09-30 12:52
$where = array("uname"=>'1');你这是定义了一个数组,包含一个数组键值:键名为uname,值为1,没有什么不等于……如果要设置usname不等于1的话,将1改换即可,如下:
$where = array("uname"=>'other number');other number就是其他数字。
热心网友 时间:2024-09-30 12:54
你这个貌似是查询数据库的条件,但是说明你是直接使用php还是采用了开发框架比如thinkphp?
假若是后者,那可以是
$where = array("usname"=>array('neq','1'));热心网友 时间:2024-09-30 12:49
$where = array("usname !="=>'1');热心网友 时间:2024-09-30 12:49
$where = array("uname"=>'1');你这是定义了一个数组,包含一个数组键值:键名为uname,值为1,没有什么不等于……如果要设置usname不等于1的话,将1改换即可,如下:
$where = array("uname"=>'other number');other number就是其他数字。