Strings Php

$membership = "asdfasdf";
if ( strpos($membership, "mz") === 0 ) {
  print "hello mz";
}
?>