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.31, 8.2.0 - 8.2.27, 8.3.0 - 8.3.15, 8.4.1 - 8.4.2
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:
54.71 ms | 406 KiB | 5 Q