3v4l.org

run code in 300+ PHP versions simultaneously
<?php // HEAD $element = []; $text = $element['#text']; var_dump($text); // Using ?? $element = []; $text = $element['#text'] ?? ''; var_dump($text); // Using string cast no #text $element = []; $text = (string) $element['#text']; var_dump($text); // Using string cast with #text $element = ['#text' => NULL]; $text = (string) $element['#text']; var_dump($text);
Output for 8.1.0 - 8.1.30, 8.2.0 - 8.2.25, 8.3.0 - 8.3.14
Warning: Undefined array key "#text" in /in/UuKsj on line 5 NULL string(0) "" Warning: Undefined array key "#text" in /in/UuKsj on line 15 string(0) "" string(0) ""

preferences:
31.05 ms | 406 KiB | 5 Q