-
1申明全局变量的关键字是:
-
2下面的代码输出什么?sound(); return strtoupper($sound); } function sound(); } class Dog extends Animal
-
3检测一个变量是否有设置的函数是否?是否为空的函数是?
解析:isset($str),empty($str);
-
4选出对于永久页面重定位,能够产生正确状态代码的语句:
-
5哪个PHP函数合并两个数组?
-
6设计一个网页,使得打开它时弹出一个全屏的窗口,该窗口中有一个文本框和一个按钮。用户在文本框中输入信息后点
解析: <pre ><code class="html hljs">index.html <html> <head> <title>by www.phpddt.com</title> </head> <body> <h1></h1> <script type="text/javascript"> open('fullwin.html'); </script> </body> </html> fullwin.html <html> <head> <title>by www.phpddt.com</title> </head> <body> <script type="text/javascript"> window.moveTo(0, 0); window.resizeTo(window.screen.width, window.screen.height); var s = prompt('请输入:'); window.opener.document.getElementsByTagName('h1')[0].innerText = s; window.close(); </script> </body> </html> </code></pre>
-
7PHP 服务器脚本由哪个分隔符包围?
-
8以下代码输出什么?$numb=array(array(10,15,30), array(10,15,30), array(10,15,30));echo count ($numb,1);
-
9怎样对两个变量做严格比较,既比较变量类型又比较变量值?
-
10新建一个数组的函数是:
点击加载更多评论>>