Collectives™ on Stack Overflow
Find centralized, trusted content and collaborate around the technologies you use most.
Learn more about Collectives
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Learn more about Teams
$regex = '/\b'.$keyword.'\b/i'; // case insensitive match
if (preg_match($regex, $linkedin_html) == 0)
$this->_htmlValidationFailed++;
continue;
When I use this code.. i get error as unknown modifier 'v'..
pls let me know what is the problem and help me rectify.
–
–
$keyword = preg_quote( $keyword, '/' );
$regex = '/\b'.$keyword.'\b/i'; // case insensitive match
if (preg_match($regex, $linkedin_html) == 0)
$this->_htmlValidationFailed++;
continue;
–
–