Skip to content

Instantly share code, notes, and snippets.

@ricardo-melo-martins
Last active February 3, 2017 20:14
Show Gist options
  • Save ricardo-melo-martins/7df84d1ec76f57ec198f104b29044796 to your computer and use it in GitHub Desktop.
Save ricardo-melo-martins/7df84d1ec76f57ec198f104b29044796 to your computer and use it in GitHub Desktop.
<?php
$awesome = "Super Awesome!";
$result = strpos ( $awesome, G );
if ($result === false) {
echo 'Not found';
} else {
echo 'Found at position ' . $result;
}
#result: Not found
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment