Dup Goto 📝

StringPrefixTest

PT2/aw/lang/php php string prefix snippet 07-31 13:46:41
To Pop
8 lines, 31 words, 222 chars Monday 2023-07-31 13:46:41
# is $needle a prefix of $haystack
function is_prefix(string $needle,string $haystack) : bool {
  $l = strlen($needle);
  if( $l > strlen($haystack) ) return false;
  return $needle === substr($haystack,0,$l);
}