Get your own PHP server Result Size: 625 x 565
x
 
<!DOCTYPE html>
<html>
<body>
<?php
echo strpbrk("Hello world!","oe"); 
?>
<p>"e" is the first occurrence of the specified characters. This function will therefore output "ello world!", because it returns the rest of the string from where it found the first occurrence of "e".</p>
</body>
</html>
ello world!

"e" is the first occurrence of the specified characters. This function will therefore output "ello world!", because it returns the rest of the string from where it found the first occurrence of "e".