下面代码的输出结果是()。
A: hello
B: world
C: NULL
D: unset
A: hello
B: world
C: NULL
D: unset
举一反三
- 下面代码的输出结果是()。 <?php $a= “hello”; $b= &$a; unset($b); $b= “world”; echo $a; ?> A: hello B: world C: NULL D: unset
- <?php$a= "hello"; $b= &$a;unset($b);$b= "world";echo $a;?>5、 下面代码的输出结果是( )。 A: hello B: world C: NULL D: unset
- 下面代码的输出结果是( )。<;?php$a= "hello";$b= &$a;unset($b);$b= "world";echo $a;?>; A: world B: NULL C: hello D: unset
- 下面代码的输出结果是()for s in “Hello World”:if s==”W”:contineprint(s,end=” “) A: Hello orld B: Hello C: World D: HelloWorld
- 下面是一个JSP页面的片段代码,请问页面输出结果是()。 A: Hello B: World C: Hello World D: 什么也不输出