Skip to content

Instantly share code, notes, and snippets.

@aapis
Last active December 14, 2016 21:41
Show Gist options
  • Save aapis/a9b7877d1310111f9bdc18d706f23381 to your computer and use it in GitHub Desktop.
Save aapis/a9b7877d1310111f9bdc18d706f23381 to your computer and use it in GitHub Desktop.
Should apply?
<?php
function starburstApplicant()
{
$coding_skills = array("awesome", "ninja-like");
$people_skills = array("great", "super-duper");
$should_apply = false;
if(in_array("awesome", $coding_skills) && in_array("great", $people_skills)) {
$should_apply = true;
}
return $should_apply;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment