I need to detect whether a string contains HTML tags. if(!preg_match('(?<=<)\w+(?=[^<]*?>)', $string)){ return $string; }. The above regex gives me an error ...
確定! 回上一頁