search
HomeBackend DevelopmentPHP Tutorial超级全面的PHP面试题整理集合_php文摘_PHP

1、用PHP打印出前一天的时间格式是2006-5-10 22:21:21(2分)

  2、echo(),print(),print_r()的区别(3分)

  3、能够使HTML和PHP分离开使用的模板(1分)

  4、使用哪些工具进行版本控制?(1分)

  5、如何实现字符串翻转?(3分)

  ---------------------------------------------------------------

  6、优化MYSQL数据库的方法。(4分,多写多得)

  7、PHP的意思(送1分)

  8、MYSQL取得当前时间的函数是?,格式化日期的函数是(2分)

  9、实现中文字串截取无乱码的方法。(3分)

  ---------------------------------------------------------------

  10、您是否用过版本控制软件? 如果有您用的版本控制软件的名字是?(1分)

  11、您是否用过模板引擎? 如果有您用的模板引擎的名字是?(1分)

  12、请简单阐述您最得意的开发之作(4分)

  13、对于大流量的网站,您采用什么样的方法来解决访问量问题?(4分)

  -----------------------------------------------------------------

  14、用PHP写出显示客户端IP与服务器IP的代码1分)

  15、语句include和require的区别是什么?为避免多次包含同一文件,可用(?)语句代替它们? (2分)

  16、如何修改SESSION的生存时间(1分).

  17、有一个网页地址, 比如PHP研究室主页: http://www.php100.com,如何得到它的内容?($1分)

  18、在HTTP 1.0中,状态码401的含义是(?);如果返回“找不到文件”的提示,则可用 header 函数,其语句为(?);(2分)

  19、在PHP中,heredoc是一种特殊的字符串,它的结束标志必须?(1分)

  20、谈谈asp,php,jsp的优缺点(1分)

  21、谈谈对mvc的认识(1分)

  -------------------------------------------------------------------

  22、写出发贴数最多的十个人名字的SQL,利用下表:members(id,username,posts,pass,email)(2分)

  23. 请说明php中传值与传引用的区别。什么时候传值什么时候传引用?(2分)

  24. 在PHP中error_reporting这个函数有什么作用? (1分)

  25. 请写一个函数验证电子邮件的格式是否正确 (2分)

  26. 简述如何得到当前执行脚本路径,包括所得到参数。(2分)

  27.如何修改SESSION的生存时间. (1分)

  --------------------------------------------------------------------

  28、JS表单弹出对话框函数是?获得输入焦点函数是? (2分)

  29、JS的转向函数是?怎么引入一个外部JS文件?(2分)

  30、foo()和@foo()之间有什么区别?(1分)

  31、如何声明一个名为”myclass”的没有方法和属性的类? (1分)

  32、如何实例化一个名为”myclass”的对象?(1分)

  33、你如何访问和设置一个类的属性? (2分)

  34、mysql_fetch_row() 和mysql_fetch_array之间有什么区别? (1分)

  --------------------------------------------------------------------

  35、GD库是做什么用的? (1分)

  36、指出一些在PHP输入一段HTML代码的办法。(1分)

  37、下面哪个函数可以打开一个文件,以对文件进行读和写操作?(1分)
  (a) fget() (b) file_open() (c) fopen() (d) open_file()

  38、下面哪个选项没有将 john 添加到users 数组中? (1分)
  (a) $users[] = ‘john';
  (b) array_add($users,'john');
  (c) array_push($users,‘john');
  (d) $users ||= ‘john';

  39、下面的程序会输入是否?(1分)
  $num = 10;
  function multiply(){
  $num = $num * 10;
  }
  multiply();
  echo $num;
  ?>

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
php怎么把负数转为正整数php怎么把负数转为正整数Apr 19, 2022 pm 08:59 PM

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

php怎么实现几秒后执行一个函数php怎么实现几秒后执行一个函数Apr 24, 2022 pm 01:12 PM

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php怎么除以100保留两位小数php怎么除以100保留两位小数Apr 22, 2022 pm 06:23 PM

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

php怎么根据年月日判断是一年的第几天php怎么根据年月日判断是一年的第几天Apr 22, 2022 pm 05:02 PM

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

php字符串有没有下标php字符串有没有下标Apr 24, 2022 am 11:49 AM

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

php怎么读取字符串后几个字符php怎么读取字符串后几个字符Apr 22, 2022 pm 08:31 PM

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。

php怎么替换nbsp空格符php怎么替换nbsp空格符Apr 24, 2022 pm 02:55 PM

方法:1、用“str_replace(" ","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\&nbsp\;||\xc2\xa0)/","其他字符",$str)”语句。

php怎么判断有没有小数点php怎么判断有没有小数点Apr 20, 2022 pm 08:12 PM

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),