欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

最全最详细的PHP面试题(带有答案)

程序员文章站 2022-06-05 17:32:53
这篇文章介绍的内容是关于最全最详细的PHP面试题(带有答案),有着一定的参考价值,现在分享给大家,有需要的朋友可以参考一下 相关推荐: 分享一波腾讯PHP面试题 2019年PHP最新面试题(含答案) Redis 高级面试题 学会这些还怕进不了大厂? 阿里面试官三年经验PHP程序员知识点汇总,学会你就 ......

这篇文章介绍的内容是关于最全最详细的php面试题(带有答案),有着一定的参考价值,现在分享给大家,有需要的朋友可以参考一下

相关推荐:

分享一波腾讯php面试题

2019年php最新面试题(含答案)

redis 高级面试题 学会这些还怕进不了大厂?

阿里面试官三年经验php程序员知识点汇总,学会你就是下一个阿里人!

php面试题之php核心技术

掌握 redis这些 知识点,面试官一定觉得你很 nb

 

1、__file__表示什么意思?(5分)

文件的完整路径和文件名。如果用在包含文件中,则返回包含文件名。自 php 4.0.2 起,__file__ 总是包含一个绝对路径,而在此之前的版本有时会包含一个相对路径。

2、如何获取客户端的ip地址?(5分)

$_server[‘remote_addr’]

3、写出使用header函数跳转页面的语句(5分)

header(‘location:index.php’);

4、$str是一段html文本,使用正则表达式去除其中的所有js脚本(5分)

$pattern = ‘/<script.*>\.+<\/script>/’;

preg_replace($pattern,’’,$str);

5、写出将一个数组里的空值去掉的语句(5分)

$arr = array(‘’,1,2,3,’’,19);

第一种方法:

$array1 = array('  ',1,'',2,3);

print_r(array_filter($array1, "del"));

function del($var)

{

       return(trim($var)); 

}

第二种方法:

$arr=array("",1,2,3,"");

$ptn="/\s+/i";

print_r(preg_grep($ptn,$arr));

6、写出获取当前时间戳的函数,及打印前一天的时间的方法(格式:年-月-日 时:分:秒) (5分)

time();

date(“y-m-d h:i:s”,strtotime(“-1 day”));

7、写出php进行编码转换的函数(5分)

iconv(‘utf-8’,’gb2312’,$str);

8、$str = “1,3,5,7,9,10,20”,使用什么函数可以把字符串str转化为包含各个数字的数组?(5分)

$arr = explode(“,”,$str);

9、serialize() /unserialize()函数的作用(5分)

serialize()和unserialize()在php手册上的解释是:

serialize — 产生一个可存储的值的表示,返回值为字符串,此字符串包含了表示 value 的字节流,不丢失其类型和结构,可以存储于任何地方。

unserialize — 从已存储的表示中创建 php 的值

具体用法:

$arr = array(“测试1′,”测试2′,”测试3′);//数组

$sarr = serialize($arr);//产生一个可存储的值(用于存储)

//用任意方法(例如:你要是吧$sarr存在一个文本文件中你就可以用file_get_contents取得)得到存储的值保存在$newarr中;

$unsarr=unserialize($newarr);//从已存储的表示中创建 php 的值

10、写出一个函数,参数为年份和月份,输出结果为指定月的天数(5分)

function day_count($year,$month){

echo date(“t”,strtotime($year.”-”.$month.”-1”));

}

11、一个文件的路径为/wwwroot/include/page.class.php,写出获得该文件扩展名的方法(5分)

$arr = pathinfo(“/wwwroot/include/page.class.php”);

$str = substr($arr[‘basename’],strrpos($arr[‘basename’],’.’));

12、你使用过哪种php的模板引擎?(5分)

smarty,thinkphp自带的模板引擎

13、请简单写一个类,实例化这个类,并写出调用该类的属性和方法的语句(5分)

class myclass{

public $aaa;

public $bbb;

public function myfun(){

echo “this is my function”;

}

}

$myclass = new myclass();

$myclass->$aaa;

$myclass->myfun();

14、本地mysql数据库db_test里已建有表friend,数据库的连接用户为root,密码为123

friend表字段为:id,name,age,gender,phone,email

请使用php连接mysql,选择出friend表里age > 20的所有记录打印结果,并统计出查询出的结果总数。(5分)

<?php

$link = mysql_connect(“localhost”,”root”,”123”) or die(“数据库连接失败!”);

mysql_select_db(“db_test”,$link) or die(“选择数据库失败!”);

$sql = “select id,name,age,gender,phone,email from friend where age>20”;

$result = mysql_query($sql);

$count = mysql_num_rows($result);

while($row = mysql_fetch_assoc($result)){

echo $row[‘id’];

….

}

15、以下有两个表

user表 字段id (int),name (varchar)

score表 字段uid (int),subject (varchar) ,score (int)

score表的uid字段与user表的id字段关联

要求写出以下的sql语句

1)在user表里新插入一条记录,在score表里插入与新加入的记录关联的两条记录(5分)

2)获取score表里uid为2的用户score最高的5条记录(5分)

3)使用联合查询获取name为“张三”的用户的总分数(5分)

4)删除name为“李四”的用户,包括分数记录(5分)

5)清空score表(5分)

6)删除user表(5分)

1). mysql_query(“insert into user(name) values(‘test’)”);

$id = mysql_insert_id();

mysql_query(“insert into score(uid,subjext,score) values(“.$id.”,’english’,’99’)”);

2).$sql = select uid,sunjext,score from score where uid=2 order by score desc limit 0,5;

3).select s.score from score s right join user u on u.id=s.uid where u.name=’张三;

4).delete from score where uid in(select id from user where name=’李四’);

delete from user where name=’李四’;

5).delete from score;

6).drop table user;

以上就是最全最详细的php面试题(带有答案)的详细内容