Find the Index of First Occurrence of a Substring in a String using PHP

strpos function

<?php

$text = '123 456 56 78';
$idx = strpos($text, '56');

echo $idx; // 5

Leave a Comment

Cancel reply

Your email address will not be published.