-
1$x = is_null($array); $x=?
-
2Linux中使用df -h/home 和du -sh/home所查看到的已使用的磁盘容量不同,可能的原因是——
-
3我们如何知道一个数组的元素个数?
-
4申明全局变量的关键字是:
-
5下面的代码输出什么?sound(); return strtoupper($sound); } function sound(); } class Dog extends Animal
-
6检测一个变量是否有设置的函数是否?是否为空的函数是?
解析:isset($str),empty($str);
-
7选出对于永久页面重定位,能够产生正确状态代码的语句:
-
8哪个PHP函数合并两个数组?
-
9设计一个网页,使得打开它时弹出一个全屏的窗口,该窗口中有一个文本框和一个按钮。用户在文本框中输入信息后点
解析: <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>
-
10PHP 服务器脚本由哪个分隔符包围?
点击加载更多评论>>