how to traverse a string to a specific position php code example
Example 1: if part of stringp ph
$a = 'How are you?';
if (strpos($a, 'are') !== false) {
echo 'true';
}
Example 2: print only some characters of a string in php
substr(string,start,length)