Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 SQL 中LIKE,您可以输入一个参数来为以下值设置通配符:LIKE %value%. 例如,我将如何使用 PHP if 语句来做到这一点?
LIKE
LIKE %value%
$value = "value-"; $post = $_POST['retrievedVal']; if($value.% == $post) { echo "true"; }
据我所知,没有,但别担心,有一种方法可以达到同样的效果strpos()
strpos()
只需使用以下 if 语句:
if(false !== strpos($post, $value)){ // you thing to do }
注意 strpos 可能返回 0,因此需要显式比较