<!DOCTYPE html>
<html>
<body>

<?php
echo strpbrk("I love Shanghai!","S");
echo "<br>";
echo strpbrk("I love Shanghai!","s");
?>
  
</body>
</html>