标签: php regex
我在stackoverflow中看到了此代码,无法弄清!!的含义!在返回语句之后。
function containsWord($str, $word) { return !!preg_match('#\\b' . preg_quote($word, '#') . '\\b#i', $str); }