Skip to content

Instantly share code, notes, and snippets.

@frob
Forked from alanorth/emoji.php
Last active August 29, 2015 14:27
Show Gist options
  • Save frob/d0e1450f78dc103f0309 to your computer and use it in GitHub Desktop.
Save frob/d0e1450f78dc103f0309 to your computer and use it in GitHub Desktop.
Emoji class / function / variable names in PHP...
<?php
class πŸ’©πŸ’©πŸ’©πŸ’©
{
function πŸ’©πŸ’©πŸ’©($😎, $🐯)
{
return $😎 + $🐯;
}
}
$πŸ” = 3;
$πŸ˜₯ = $πŸ” + 2;
$πŸ’© = new πŸ’©πŸ’©πŸ’©πŸ’©;
echo $πŸ’© -> πŸ’©πŸ’©πŸ’©($πŸ”, $πŸ˜₯);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment