- 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) ""
<?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);