当前位置:首页 > PHP教程 > php面试题 > 列表

PHP新浪面试题全部题目与答案

发布:smiling 来源: PHP粉丝网  添加日期:2014-07-22 13:44:09 浏览: 评论:0 

这是一个朋友在新浪面试之后把所有面试题与答案都拿出来了,下面我把东西记录一下,有用得上的兄弟们可先看一次,对过去面试有个底.

1.写一个函数,尽可能高效的,从一个标准 url 里取出文件的扩展名,例如:/abc/de/fg.php?id=1 需要取出 php 或 .php

答:我是直接用PHP内置函数搞定的,不重复造轮子,估计出题者也是想考察基础知识,主要是解析url和一个返回文件信息的函数,扩展:取得文件后缀名的多种方法;代码如下:

  1. <?php 
  2.     /** by  */ 
  3.     $url = "/abc/de/fg.php?id=1"
  4.     $path = parse_url($url); 
  5.     echo pathinfo($path['path'],PATHINFO_EXTENSION);  //php 
  6. ?> 

2.在 HTML 语言中,页面头部的 meta 标记可以用来输出文件的编码格式,以下是一个标准的 meta 语句.

<META http-equiv='Content-Type' content='text/html; charset=gbk'>

请使用 PHP 语言写一个函数,把一个标准 HTML 页面中的类似 meta 标记中的 charset 部分值改为 big5.

请注意:

(1) 需要处理完整的 html 页面,即不光此 meta 语句

(2) 忽略大小写

(3) ' 和 " 在此处是可以互换的

(4) 'Content-Type' 两侧的引号是可以忽略的,但 'text/html; charset=gbk' 两侧的不行

(5) 注意处理多余空格

答:表示我正则表达式(PHP正则详解)忘记差不多了,弄了半天,代码如下:

  1. <?php 
  2.     /**  */ 
  3.     $html = "<meta http-equiv='Content-Type' content='text/html; charset=gbk'>"
  4.     //匹配标准的meta标签 
  5.     $pattern = "/<metas+http-equiv=('|")?Content-Type('|")?s+content=('|")text/html;s+charset=(.*)('|")>/i"
  6.     $replacement = "<meta http-equiv='Content-Type' content='text/html; charset=big5'>"
  7.     $result = preg_replace($pattern$replacement$html); 
  8.     echo htmlspecialchars($result); 
  9. ?> 

3.写一个函数,算出两个文件的相对路径,如 $a = '/a/b/c/d/e.php';$b = '/a/b/12/34/c.php';计算出 $b 相对于 $a 的相对路径应该是 ../../c/d将()添上.

答案:代码如下:

  1. <?php 
  2.     /** by  */ 
  3.     $a = '/a/b/c/d/e.php'
  4.     $b = '/a/b/13/34/c.php'
  5.     echo getRelativePath($a$b); //"../../12/34/" 
  6.     function getRelativePath($a,$b){ 
  7.         $a2array = explode('/'$a); 
  8.         $b2array = explode('/'$b); 
  9.         $relativePath   = ''
  10.         for$i = 1; $i <= count($b2array)-2; $i++ ) { 
  11.             $relativePath .= $a2array[$i] == $b2array[$i] ? '../' : $b2array[$i].'/'
  12.         } 
  13.         return $relativePath
  14.     } 
  15. ?> 

4.写一个函数,能够遍历一个文件夹下的所有文件和子文件夹.

答:这个我之前就在博客中写过(PHP文件遍历及文件拷贝),只是实现的方法很多,效率不一定最高,代码如下:

  1. /* 
  2.  *@blog   
  3.  */ 
  4. function listDir($dir = '.'){ 
  5.  if ($handle = opendir($dir)) { 
  6.   while (false !== ($file = readdir($handle))) { 
  7.    if($file == '.' || $file == '..'){ 
  8.     continue
  9.    } 
  10.    if(is_dir($sub_dir = realpath($dir.'/'.$file))){ 
  11.     echo 'FILE in PATH:'.$dir.':'.$file.'<br>'
  12.     listDir($sub_dir); 
  13.    }else
  14.     echo 'FILE:'.$file.'<br>'
  15.    } 
  16.   } 
  17.   closedir($handle); 
  18.  } 
  19.  
  20. listDir('e:wwwabc'); 

5.简述论坛中无限分类的实现原理.

答:无限极分类,那么应该是考察递归函数吧!

第一步:建立测试数据库,代码如下:

  1. CREATE TABLE `category` ( 
  2.  `id` smallint(5) unsigned NOT NULL auto_increment, 
  3.  `fid` smallint(5) unsigned NOT NULL default '0'
  4.  `value` varchar(50) NOT NULL default ''
  5.  PRIMARY KEY (`id`) 
  6. ) ENGINE=MyISAM DEFAULT CHARSET=utf8; 

第二步:插入测试数据,代码如下:

  1. INSERT INTO `category` ( `fid`, `value`) VALUES  
  2. (0, 'PHP点点通博客Pxx.COM'), 
  3. (1,'a'), 
  4. (1,'b'), 
  5. (2,'c'), 
  6. (2,'d'), 
  7. (4,'e'

第三步:递归输出分类,代码如下:

  1. <?php 
  2. /** by  */ 
  3. $conn = mysql_connect("localhost""root""mckee"); 
  4. mysql_select_db("test",$conn); 
  5. mysql_query("set names utf8"); 
  6. $sql = "SELECT * FROM category"
  7. $res = mysql_query($sql); 
  8. while($row = mysql_fetch_assoc($res)){ 
  9.     $arr[] = array($row[id],$row[fid],$row[value]); 
  10. getCate(0); 
  11. function getCate($fid = 0) {    
  12.     global $arr;  
  13.     for ($i = 0; $i < count($arr); $i++) {    
  14.         if ($arr[$i][1] == $fid) {         
  15.             echo $arr[$i][2] . "<br>";  
  16.             getCate($arr[$i][0]); //递归 
  17.         } 
  18.     } 
  19. ?> 

6.设计一个网页,使得打开它时弹出一个全屏的窗口,该窗口中有一个文本框和一个按钮,用户在文本框中输入信息后点击按钮就可以把窗口关闭,而输入的信息却在主网页中显示.

答案:都没明白出这题目是干嘛的,新浪工程师脑子进水了吗?考察js的window对象?亲们告诉我?

index.html,代码如下:

  1. <html> 
  2.     <head> 
  3.         <title>by </title> 
  4.     </head> 
  5.  <body> 
  6.   <h1></h1> 
  7.   <script type="text/javascript"
  8.    open('fullwin.html'); 
  9.   </script> 
  10.  </body> 
  11. </html> 

fullwin.html,代码如下:

  1. <html> 
  2.      <head> 
  3.         <title>by </title> 
  4.      </head> 
  5.  <body> 
  6.   <script type="text/javascript"> 
  7.    window.moveTo(0, 0); 
  8.    window.resizeTo(window.screen.width, window.screen.height); 
  9.    var s = prompt('请输入:'); 
  10.    window.opener.document.getElementsByTagName('h1')[0].innerText = s
  11.    window.close(); 
  12.   </script> 
  13.  </body> 
  14. </html> 

unset引用,代码如下:

  1. <?php 
  2.     $a = "this is a php blog"
  3.     $b = & $a
  4.     unset($b); 
  5.     echo $a//this is a php blog 
  6. ?> 

这个我很清楚,unset($b),只是断开了变量名和值得绑定,但是神奇的是如下代码:

  1. <?php  
  2.     $a = "test"
  3.     $b = & $a
  4.     unset($a); 
  5.     echo $b;//test 
  6. ?> 

但是我销毁$a了,为嘛$b的值还在呢?晕了,求解!感谢下面网友回复,让我明白了.

关于unset()函数使用注意:只有当指向该值的所有变量(比如有引用变量指向该值)都被销毁后,地址才会被释放,如下:

  1. <?php  
  2.     /** by www.phpfensi.com */ 
  3.     $a = "test"
  4.     $b = & $a
  5.     unset($a); 
  6.     unset($b); 
  7.     echo $b;//输出空 
  8. ?>  

Tags: PHP新浪面试题 题目答案

分享到: