<h1 id="question-title"><span class="question-title" data-accusearea="qTitle">请教在MySQL怎么反过来LIKE某个字段? 我们通常都是 LIKE '%关键字%' 这样找出记录 我现在的情况是在字段</span></h1><pre id="best-answer-content" class="reply-text mb10" data-accusearea="aContent">试试 like concat('%',字段,'%')</pre><p><br /></p><p>去掉重复字段:distinct</p><p><br /></p><p><pre id="question-content" data-accusearea="qContent">如何用php去除字符串中的字母和数字和斜线“/”</pre></p><p><pre id="best-answer-content" class="reply-text mb10" data-accusearea="aContent">$str='348aksdfh<>?:"{}_+/dfg/';
$str=preg_replace('|[0-9a-zA-Z/]+|','',$str);
echo $str;</pre><br /></p>