Skip to content

Instantly share code, notes, and snippets.

@mlebkowski
Created June 20, 2016 08:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mlebkowski/b6f8d3b29e21572b0fb892e993c441f0 to your computer and use it in GitHub Desktop.
Save mlebkowski/b6f8d3b29e21572b0fb892e993c441f0 to your computer and use it in GitHub Desktop.
<?php
function str_startswith($str, $needle) {
return 0 === strpos($str, $needle);
}
function str_startswith($str, $needle) {
return $needle === substr($str, 0, strlen($needle));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment