-
1试写出几个输出一段 HTML 代码的方法。
解析:嗯,你可以使用 PHP 中任何一种输出语句,包括 echo、print、printf,大部分人都使用如下例的 echo:</br>echo “My string $variable”;你也可以使用这种方法:</br>echo <<<ENDThis text is written to the screen as output and this $variable is parsed too. If you wanted you can have <span> HTML tags in here as well.</span> The END; remarks must be on a line of its own, and can’t contain any extra white space.END;
-
2在PHP中int,float,string,boolean是什么?
-
3写出下面代码的结果:>0; echo 2>>1; echo 3<<2;?>
-
4print()和echo()有什么区别?
-
5哪种类型的数组允许你使用文本键以便于数组索引可以更好描述?
-
6错误常量用于设置错误报告,下面哪一个不是合法的错误报告常量?
-
7在数组中,哪个函数可以交换所有的键值和它们相对应的值?
-
8哪个函数能不区分大小写得对两个字符串进行二进制比对?
-
9函数delete是做什么的?
-
10以只读模式打开文件 "time.txt" 的正确方法是?
点击加载更多评论>>