Where you can (and can't) use Emoji in PHP
I was noodling around in PHP the other day and discovered that this works:
PHP<?php
$π = "bread";
echo "Some delicious " . $π;
I mean, there's no reason why it shouldn't work. An emoji is just a Unicode character (OK, not just a character - but we'll get on to that), so it should be fine to use anywhere.
Emoji work perfectly well as function names:
PHPfunction πΊπΆ() {
echo "catdog!";
}
πΊπΆ();
Definitions:
PHPdefine( "β", "huh?" );
echo β;
And, well, pretty much everywhere:
PHPclass π¦
{
public int $π¦;
public ?string $π¦;
public function __construct(int $π¦, ?string $π¦)
{
$this->π¦ = $π¦;
$this->π¦ = $π¦;
}
}
$π = new π¦(1234, "birb");
echo $π->π¦;
How about namespaces? Yup!
PHPnamespace π;
class π {
public function π() {
echo "Wink!";
}
}
use π\π;
$π = new π();
$π->π();
Even moderately complex Unicode sequences work:
PHPecho <<<π³οΈβπ
Unicode is magic!
π³οΈβπ;
I've written before about the Quirks and Limitations of Emoji Flags. The humble π³οΈβπ is actually the sequence U+1F3F3 (white flag), U+FE0F (Variation Selector 16), U+200D (Zero Width Joiner), U+1F308 (Rainbow).
Take a complex emoji like "Female Astronaut with Medium Dark Skin Tone" - π§πΎβπ - that also works!
PHP$π§πΎβπ = 1;
$π·π»ββοΈ = 2;
echo $π§πΎβπ + $π·π»ββοΈ;
Probable the most complex emoji has 10 different codepoints! It looks like this - π§πΎββ€οΈβπβπ§π»
And it works!
PHP$π§πΎββ€οΈβπβπ§π» = "Kiss Kiss. Bang Bang!";
echo $π§πΎββ€οΈβπβπ§π»[-1];
There are some emoji which don't work;
PHP$5οΈβ£ = "five";
The 5οΈβ£ emoji is U+0035 (Digit Five), U+FE0F (Variation Selector 16), U+20E3 (Combining Enclosing Keycap). PHP doesn't allow variables to start with digits, so it craps out with PHP Parse error: syntax error, unexpected integer "5", expecting variable or "{" or "$" in php shell code on line 1
You also can't use "punctuation" emoji as though they were normal characters:
PHPecho 5 β= 6;
And, while not strictly emoji, you can't use mathematical symbols:
PHPecho 5 β€ 6;
So, there you have it. Is this useful? Well, probably. It is easy to get lost in a sea of text - so little pictograms can make it easier to see what you're doing. If the basic ASCII characters aren't part of your native language, perhaps it is useful to make use of the full range of Unicode.
Does your favourite programming language support Emoji?
SnoopJ says:
@blog @jalefkowit "Mom, can we have UAX#31 support?"
"We have Unicode support at home"
The Unicode support at home:
Slim Amamou says:
@blog note the perfectly accurate error message when you use the 5 emoji
nicopap says:
In rust you can use Unicode characters for variable names, but only in the Unicode Standard Annex #31 (aka UAX#31). Basically just "character-like" and "numeric-like" symbols. You can use Cyrillic, Chinese, etc, but no emoji. (well, it does have a special error message if you try to use the crab emoji)
Now it's also how Python works. The PEP 3131 explains the decision, worth a look, gives a rundown of upsides and downsides, plus it's short.
Python PEP 3131: https://peps.python.org/pep-3131/
Rust reference: https://doc.rust-lang.org/reference/identifiers.html
Annex #31: https://www.unicode.org/reports/tr31/tr31-37.html
Leo said on mas.to:
@Edent
Another win for PHP! π
More comments on Mastodon.