Skip to content

Instantly share code, notes, and snippets.

@crossmaya
Last active May 8, 2021 01:59
Show Gist options
  • Save crossmaya/5319554 to your computer and use it in GitHub Desktop.
Save crossmaya/5319554 to your computer and use it in GitHub Desktop.
php basic helps
<?php
function start_with($haystack, $needle) {
return strpos($haystack, $needle) === 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment