最全最詳細的PHP面試題(帶有答案)

這篇文章介紹的內容是關於最全最詳細的PHP面試題(帶有答案),有着必定的參考價值,如今分享給你們,有須要的朋友能夠參考一下php

相關推薦:html

分享一波騰訊PHP面試題mysql

2019年PHP最新面試題(含答案)程序員

Redis 高級面試題 學會這些還怕進不了大廠?面試

阿里面試官三年經驗PHP程序員知識點彙總,學會你就是下一個阿里人!正則表達式

php面試題之PHP核心技術sql

掌握 Redis這些 知識點,面試官必定以爲你很 NBthinkphp

 

一、__FILE__表示什麼意思?(5分)數據庫

文件的完整路徑和文件名。若是用在包含文件中,則返回包含文件名。自 PHP 4.0.2 起,__FILE__ 老是包含一個絕對路徑,而在此以前的版本有時會包含一個相對路徑。數組

二、如何獲取客戶端的IP地址?(5分)

$_SERVER[‘REMOTE_ADDR’]

三、寫出使用header函數跳轉頁面的語句(5分)

Header(‘location:index.php’);

四、$str是一段html文本,使用正則表達式去除其中的全部js腳本(5分)

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

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

五、寫出將一個數組裏的空值去掉的語句(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));

六、寫出獲取當前時間戳的函數,及打印前一天的時間的方法(格式:年-月-日 時:分:秒) (5分)

Time();

Date(「Y-m-d H:i:s」,Strtotime(「-1 day」));

七、寫出php進行編碼轉換的函數(5分)

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

八、$str = 「1,3,5,7,9,10,20」,使用什麼函數能夠把字符串str轉化爲包含各個數字的數組?(5分)

$arr = explode(「,」,$str);

九、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 的值

十、寫出一個函數,參數爲年份和月份,輸出結果爲指定月的天數(5分)

Function day_count($year,$month){

Echo date(「t」,strtotime($year.」-」.$month.」-1」));

}

十一、一個文件的路徑爲/wwwroot/include/page.class.php,寫出得到該文件擴展名的方法(5分)

$arr = pathinfo(「/wwwroot/include/page.class.php」);

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

十二、你使用過哪一種PHP的模板引擎?(5分)

Smarty,thinkphp自帶的模板引擎

1三、請簡單寫一個類,實例化這個類,並寫出調用該類的屬性和方法的語句(5分)

Class myclass{

Public $aaa;

Public $bbb;

Public function myfun(){

Echo 「this is my function」;

}

}

$myclass = new myclass();

$myclass->$aaa;

$myclass->myfun();

1四、本地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’];

….

}

1五、如下有兩個表

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面試題(帶有答案)的詳細內容

原文出處:https://www.cnblogs.com/a609251438/p/12116693.html

相關文章
相關標籤/搜索