php的null

WBOY
Libérer: 2016-06-06 20:38:46
original
1008 Les gens l'ont consulté

为什么运行一下代码不报warning或者notice

<code>$data = null;

var_dump($data['name']);
</code>
Copier après la connexion
Copier après la connexion

结果:

<code>null
</code>
Copier après la connexion
Copier après la connexion

回复内容:

为什么运行一下代码不报warning或者notice

<code>$data = null;

var_dump($data['name']);
</code>
Copier après la connexion
Copier après la connexion

结果:

<code>null
</code>
Copier après la connexion
Copier après la connexion

这是一个很有意思的问题, 查了查资料, php.net上有人提出过

https://bugs.php.net/bug.php?id=68110
https://bugs.php.net/bug.php?id=54556

在后面的那页链接里看到了鸟哥@Laruence, 我想能最好深入解答这个问题, 就是他了.

<code>$arr = false;
var_dump($arr['foo']['bar']['baz']); // NULL
</code>
Copier après la connexion

php手册上问题原文:

<code><?php $a['a'] = null;
$a['b'] = array();

echo $a['a']['non-existent']; // DOES NOT throw an E_NOTICE error as expected.

echo $a['b']['non-existent']; // throws an E_NOTICE as expected
?>
</code>
Copier après la connexion

I added this bug to bugs.php.net
(https://bugs.php.net/bug.php?id=68110) however I made tests with
php4, 5.4 and 5.5 versions and all behave the same way.

This, in my point of view, should be cast to an array type and throw
the same error.

This is, according to the documentation on this page, wrong.

From doc: "Note: Attempting to access an array key which has not been
defined is the same as accessing any other undefined variable: an
E_NOTICE-level error message will be issued, and the result will be
NULL."

你检查下php.ini的配置呢 或者在输出前加error_reporting(-1);试下呢

Up up..

Étiquettes associées:
php
source:php.cn
Déclaration de ce site Web
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn
Tutoriels populaires
Plus>
Derniers téléchargements
Plus>
effets Web
Code source du site Web
Matériel du site Web
Modèle frontal