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('Test 1', 'Test'));

preferences:
38.29 ms | 402 KiB | 5 Q