Which label does this match expression print?

from PHP fundamentals
PHP 8.3.33 beginner 2 min

Which label does this match expression print?

php
<?php
$statusCode = '0';

$label = match ($statusCode) {
    0 => 'integer-zero',
    '0' => 'string-zero',
    default => 'other',
};

echo $label, PHP_EOL;
Open in playground
Report an error