I'm doing some tests with function strrchr, but I can't understand the output:
$text = 'This is my code';
echo strrchr($text, 'my');
//my code
Ok, the function returned the string before last occurrence
$text = 'This is a test to test code';
echo strrchr($text, 'test');
//t code
But in this case, why the function is returning "t code", instead "test code"?
Thanks
From the PHP documentation:
So your first example is the exact same as:
RESULT
Your second example is the exact same as:
RESULT
This function I made does what you were expecting:
The regex it uses can be tested here: DEMO
example:
OUTPUT: