Skip to content

Instantly share code, notes, and snippets.

@lstrojny
Created March 16, 2023 23:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lstrojny/6847341f7491852d95779168136605a0 to your computer and use it in GitHub Desktop.
Save lstrojny/6847341f7491852d95779168136605a0 to your computer and use it in GitHub Desktop.
Single return expression only
<?php
$v = match ($pop) {
default => [++$pops[$pop], $marker][1],
null => match ($pops[$marker]) {
0 => '',
default => [--$pops[$marker], $marker][1],
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment