迹忆客 计算机编程题库

PHP基础知识测验一

1.
(单选题)PHP: 指的是什么
  • Private Home Page
  • Hypertext Markup Language
  • PHP: Hypertext Preprocessor
  • Hypertext Transfer Protocol
2.
(单选题)PHP 服务器脚本由哪个分隔符包围?
  • <script>...</script>
  • <?php>...</?>
  • <?php…?>
  • <&>...</&>
3.
(多选题)如何使用 PHP 输出 “hello world”?
  • echo "hello world";
  • print "hello world";
  • "Hello World";
  • Document.Write("Hello World");
4.
(单选题)PHP变量是以什么字符开头
  • !
  • $
  • &
  • @
5.
(单选题)结束 PHP 语句的正确方法是?
  • </php>
  • New line
  • ;
  • .
6.
(单选题)PHP语法和下面哪种语言比较相似
  • Perl 和 C
  • VBScript
  • Javascript
7.
(单选题)如何从使用GET方法提交的表单中获取数据
  • Request.Form
  • $_GET[]
  • Request.QueryString
8.
(单选题)如何从使用POST方法提交的表单中获取数据
  • Request.Form
  • Request.QueryString
  • $_POST[]
9.
(单选题)请判断以下说法是否正确:**当使用 POST 方法时,变量显示在 URL 中**。
  • 正确
  • 错误
10.
(单选题)请判断以下说法是否正确:在 PHP 中,既可以使用单引号 (' ') 也可以使用双引号 (" ") 来包围字符串。
  • 正确
  • 错误
11.
(单选题)在 PHP 中创建函数的正确方法是?
  • function myFunction()
  • create myFunction()
  • new_function myFunction()
12.
(单选题)请判断以下说法是否正确:**包含文件必须使用文件后缀 ".inc"**。
  • 正确
  • 错误
13.
(单选题)引用文件 "jiyik.inc" 的正确方法是?
  • <?php require("jiyik.inc"); ?>
  • <!--include file="jiyik.inc"-->
  • <?php include_file("jiyik.inc"); ?>
  • <% include file="jiyik.inc" %>
14.
(单选题)以只读模式打开文件 “jiyik.txt” 的正确方法是?
  • fopen("jiyik.txt","r");
  • fopen("jiyik.txt","r+");
  • open("jiyik.txt");
  • open("jiyik.txt","read");
扫码一下
查看教程更方便