Skip to content

Instantly share code, notes, and snippets.

@auxiliaire
Created April 7, 2021 19:04
Show Gist options
  • Select an option

  • Save auxiliaire/48432e13518dd9190cc41897dc59aadd to your computer and use it in GitHub Desktop.

Select an option

Save auxiliaire/48432e13518dd9190cc41897dc59aadd to your computer and use it in GitHub Desktop.
Implement `init` in PHP
function init(array | string $xs) {
return match (true) {
is_string($xs) && !empty($xs) => substr($xs, 0, -1),
is_array($xs) && !empty($xs) => array_slice($xs, 0, -1),
default => null
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment