Answers for "php go to position and get string"

PHP
0

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
?>
Posted by: Guest on November-18-2020

Code answers related to "php go to position and get string"

Browse Popular Code Answers by Language