3v4l.org

run code in 300+ PHP versions simultaneously
<?php # Null Coalescing Assignment Operator # OLD WAY (PHP < 7.4 ) $data['comments']['user_id'] = $data['comments']['user_id'] ?? 'PlaceHoldered value...'; var_dump($data['comments']['user_id']); $data = null; # PHP 7.4 + syntax to use new assigment operator without unecessary tests. $data['comments']['user_id'] ??= 'PlaceHoldered value...'; var_dump($data['comments']['user_id']);

preferences:
26.98 ms | 404 KiB | 5 Q