get string in pos php code example
Example 1: strpos php
if(strpos('abc', 'a') !== false) { // ...
Example 2: strpos in php
<?php
// We can search for the character, ignoring anything before the offset
$newstring = 'abcdef abcdef';
$pos = strpos($newstring, 'a', 1); // $pos = 7, not 0
?>