string like php code example
Example 1: find in php string or
$a = 'How are you?';
if (strpos($a, 'are') !== false) {
echo 'true';
}
Example 2: like %% inside the string php
strpos('STRING', 'SEARCH_ITEM');
--------------OR--------------------
preg_match('~' . preg_quote('.SEARCH_ITEM.', '~') . '~', 'STRING');
Example 3: strpos
strpos ( string $haystack , mixed $needle [, int $offset = 0 ] ) : int