Get your own PHP server Result Size: 625 x 565
x
 
<!DOCTYPE html>
<html>
<body>
<?php
echo "W will output: " . strpbrk("Hello world!","W");
echo "<br>";
echo "w will output: " . strpbrk("Hello world!","w");
?>
<p>This function is case-sensitive ("W" and "w" will not output the same).</p>
</body>
</html>
W will output:
w will output: world!

This function is case-sensitive ("W" and "w" will not output the same).