sql中加模糊查询,需要在where中写变量,没加单引号一直白屏不解析。试了好多种方法 都不得。原来要加单引号,就搞定了。
$stru= '%s'.$user_id.'s%'; $where['_string'] = " yhid like '$stru'"; //这里有变量 注意加单引号
sql中加模糊查询,需要在where中写变量,没加单引号一直白屏不解析。试了好多种方法 都不得。原来要加单引号,就搞定了。
$stru= '%s'.$user_id.'s%'; $where['_string'] = " yhid like '$stru'"; //这里有变量 注意加单引号