3v4l.org

run code in 300+ PHP versions simultaneously
<?php function shouldUpdateUsername($source, $existing) { if ($source !== $existing) { $pattern = sprintf('/^%s \[\d+\]$/', preg_quote($source, '/')); $processedBefore = preg_match($pattern, $existing) !== 1; $sourceAvailable = false; return $sourceAvailable || $processedBefore; } return false; } var_dump(shouldUpdateUsername('A [1]', 'AA [1]'));

preferences:
46.88 ms | 402 KiB | 5 Q