PHP Spaceship Operator
last modified March 20, 2025
Introduced in PHP 7, the spaceship operator <=>
compares two values,
returning -1, 0, or 1 if the left is less than, equal to, or greater than the
right. It simplifies sorting and comparisons, unifying numeric, string, and
mixed-type logic. This tutorial explores its use with examples.
Numeric Comparison
The spaceship operator provides a single expression for comparing values, returning an integer that reflects their relative order.
<?php $a = 5; $b = 8; echo $a <=> $b . "\n"; echo $b <=> $a . "\n"; echo $a <=> $a . "\n";
$a <=> $b
compares 5 and 8: 5 < 8, so -1. $b <=> $a
yields 1 (8 > 5), and $a <=> $a
is 0 (5 = 5). This mirrors
strcmp
or strncmp
but works across types, offering a
concise alternative to multiple conditionals.
Sorting Strings by Length
The operator excels in sorting arrays via usort
, allowing custom
comparisons like string length, with flexible order control.
<?php $words = ['sky', 'water', 'emotion', 'shredder', 'anonymous', 'on', 'a', 'copper', 'the', 'elephant']; usort($words, fn($e1, $e2) => strlen($e1) <=> strlen($e2)); print_r($words); usort($words, fn($e1, $e2) => strlen($e2) <=> strlen($e1)); print_r($words);
strlen($e1) <=> strlen($e2)
sorts $words
by length
ascending: "a" (1) to "anonymous" (9). strlen($e2) <=> strlen($e1)
reverses it, descending: "anonymous" to "a". The operator's -1, 0, 1 output
drives usort
, streamlining custom sorting logic.
Sorting Custom Objects
With objects, the spaceship operator can sort by properties when used in
usort
, mimicking Comparable
-like behavior without an
interface.
<?php class User { public $fname; public $lname; public $occupation; public function __construct($fname, $lname, $occupation) { $this->fname = $fname; $this->lname = $lname; $this->occupation = $occupation; } public function __toString() { return "$this->fname $this->lname - $this->occupation"; } } $users = [ new User('John', 'Doe', 'gardener'), new User('Roger', 'Roe', 'driver'), new User('Lucia', 'Smith', 'accountant'), new User('Paul', 'Newman', 'firefighter'), new User('Adam', 'Clapton', 'teacher'), new User('Jane', 'Walter', 'pilot') ]; echo implode("\n", $users) . "\n\n"; usort($users, fn($a, $b) => $a->lname <=> $b->lname); echo implode("\n", $users) . "\n";
$a->lname <=> $b->lname
sorts $users
by last name.
Before sorting, it's unordered; after, it's "Clapton" to "Walter". The operator
compares strings lexicographically, making object sorting straightforward
without requiring a formal comparison interface.
Comparing Mixed Types
The spaceship operator handles mixed types consistently, applying PHP's type comparison rules, which makes it useful for heterogeneous arrays.
<?php $values = [5, "10", 3.14, "2"]; usort($values, fn($a, $b) => $a <=> $b); print_r($values);
$a <=> $b
sorts $values
. PHP converts strings to
numbers when possible, so "2" becomes 2, "10" becomes 10, yielding [2, 3.14, 5,
10]. This shows the operator's ability to unify type comparisons seamlessly.
Filtering with Spaceship
The operator's numeric output can filter arrays using array_filter
,
selecting values based on a threshold comparison.
<?php $numbers = [15, 7, 22, 3, 19, 10]; $threshold = 12; $above = array_filter($numbers, fn($n) => ($n <=> $threshold) > 0); print_r(array_values($above));
$n <=> $threshold > 0
keeps numbers > 12. If $n <=>
$threshold
is 1, it's included, resulting in [15, 22, 19].
array_values
reindexes the array. This leverages the operator's
output for filtering logic efficiently.
Custom Multi-Property Sort
Chaining spaceship comparisons in usort
allows sorting by multiple
criteria, resolving ties with secondary properties.
<?php class Product { public $name; public $price; public function __construct($name, $price) { $this->name = $name; $this->price = $price; } public function __toString() { return "$this->name (\$$this->price)"; } } $products = [ new Product("Laptop", 1200), new Product("Mouse", 25), new Product("Laptop", 800), new Product("Keyboard", 50) ]; usort($products, fn($a, $b) => $a->name <=> $b->name ?: $a->price <=> $b->price ); echo implode("\n", $products) . "\n";
$a->name <=> $b->name ?: $a->price <=> $b->price
sorts by name,
then price if names match. "Laptop" sorts to 800, 1200, followed by "Keyboard"
and "Mouse". PHP's ternary-like ?:
chains comparisons, showing the
operator's power in multi-level sorting.
Spaceship in Conditional Logic
The operator's -1, 0, 1 result can drive switch statements, replacing multiple relational checks with a single comparison.
<?php $x = 7; $y = 10; $result = match ($x <=> $y) { -1 => "less than", 0 => "equal to", 1 => "greater than" }; echo "$x is $result $y\n";
$x <=> $y
(7 < 10) returns -1, matched to "less than" via
match
(PHP 8+). This avoids separate <
,
==
, >
checks, using the operator's output for concise,
readable logic.
Comparing Dates
The spaceship operator works with DateTime
objects, enabling date
comparisons for sorting or validation tasks.
<?php $dates = [ new DateTime('2025-03-20'), new DateTime('2024-12-25'), new DateTime('2025-01-15') ]; usort($dates, fn($a, $b) => $a <=> $b); foreach ($dates as $date) { echo $date->format('Y-m-d') . "\n"; }
$a <=> $b
sorts DateTime
objects chronologically.
PHP's spaceship operator natively supports this, ordering from 2024-12-25 to
2025-03-20. This simplifies date handling without manual timestamp conversions.
Sorting Associative Arrays by Value
The operator can sort associative arrays by values using uasort
,
preserving key-value pairs for structured data.
<?php $scores = [ 'Alice' => 85, 'Bob' => 92, 'Charlie' => 78, 'Dana' => 95 ]; uasort($scores, fn($a, $b) => $a <=> $b); print_r($scores);
$a <=> $b
sorts $scores
by value, keeping names as
keys. It orders from 78 (Charlie) to 95 (Dana). uasort
maintains
associations, and the operator ensures numeric ordering, useful for rankings
or reports.
Source
PHP Comparison Operators Documentation
This tutorial covered the PHP spaceship operator <=>
, showing its
use in sorting, filtering, and custom comparisons with practical examples.
Author
List all PHP tutorials.