Blogger Information
Blog 25
fans 0
comment 1
visits 21977
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
PHP基础面试题
潜轲的博客
Original
605 people have browsed it

简单的面试题,以后多复习可以增加一下难度

  1. PHP的跨平台指什么?

    指不受操作系统的限制,可以在LINUX,windows,mac上开发

  2. WEB开发中的数据提交方式有几种?分别介绍一下

        GET,POST

        GET:通过网页的url提交,用户可以通过网页直观的看到,但可提交数据很小,安全度低

        POST:通过HTTP的请求中POST进行数据提交,可以提交大量数据,安全度高。

        GET可以用来做查询,POST可以用来做更新,删除,添加。

  3.SESSION 与 COOKIE

    1.存储位置:SESSION 存储在服务器,COOKIE存储在浏览器

    2.SESSION 的安全性比COOKIE 高。

    3.SESSION在使用时需开启,是会话服务,COOKIE不用开启 。

  4.print,echo,print_r,var_dump

    1.print,echo 为语法结构不是函数,都是直接输出,print 比 echo稍慢。只能打印字符串

    2.print_r,var_dump为函数,输出较慢,都可以打印复杂数据var_dump 输出详细信息

    


Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post