Skip to content

Instantly share code, notes, and snippets.

@ThijsFeryn
Created November 30, 2015 14:17
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 ThijsFeryn/5bcf5d197ed6828f12e7 to your computer and use it in GitHub Desktop.
Save ThijsFeryn/5bcf5d197ed6828f12e7 to your computer and use it in GitHub Desktop.
PHP 7 space ship operator
<?php
/**
* Space ship operator
*/
$array = [
"1 <=> 1" => 1 <=> 1,
"1 <=> 2" =>1 <=> 2,
"2 <=> 1" => 2 <=> 1
];
var_dump($array);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment