Heim >Backend-Entwicklung >PHP-Tutorial >php常量的问题。php常量的值改变了,疑惑

php常量的问题。php常量的值改变了,疑惑

WBOY
WBOYOriginal
2016-06-02 11:34:301044Durchsuche

php

php常量的问题。php常量的值不能改变,但是一下这段代码的值有一点改变。请大家帮我分析一下。
代码如下:
define("CONSTANT", "hello!", true);
echo CONSTANT."
";
define("CONSTANT", "What are you doing?");
echo CONSTANT."
";
echo Constant;
页面输出时这样的:
hello!
What are you doing?
hello!

搞不清楚为什么第二个会输出"What are you doing?". define第一个时不设置true的话输出的是“hello”。大家有什么见解吗?

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn