A. Cookie 存储于用户本地磁盘上,里面保存着浏览器访问过的网页的一些信息(比如访问时间、地址等)。 B. Cookie 存储在服务端,用于数据交互。 C. PHP 不支持 Cookie 操作。 D. Cookie是不会过期的
A. continue B. break C. end D. PHP_EOL
A. $GLOBALS B. $_SERVER C. $_COOKIE D. $_SESSION
A. size() B. length C. strlen() D. 以上都不是
A. array_change_key_case() B. array() C. array_chunk() D. array_count_values()
A. $b <= $b B. $b *= $b C. $b += $b D. $b -= $b
A. else if B. and if C. elif D. or if
A. PHP 是 “PHP:Hypertext Preprocessor ” 的首字母缩写 B. PHP 是可以嵌入在 HTML 中的服务器端脚本语言 C. 它用于管理动态内容、数据库、会话跟踪,甚至构建整个电子商务网站 D. 以上都正确
A. stripslashes() B. htmlspecialchars() C. str_replace() D. htmlentities()
A. int mum = 111 B. $num = 111 C. int $num = 111 D. 以上都是