この記事の内容は、PHP リリース時の新しいファイルに基づいています。 リンク アドレス: PHP 7 new
php// PHP 7之前的写法:比较两个数的大小function order_func($a, $b) { return ($a < $b) ? -1 : (($a > $b) ? 1 : 0);}// PHP新增的操作符 <=>,perfectfunction order_func($a, $b) { return $a <=> $b;}
phpecho "\u{1F602}"; // outputs