Home>Article>Backend Development> Summary of classic PHP core technology interview questions
This article summarizes classic PHP core technology interview questions for you. It has certain reference value. Friends in need can refer to it. I hope it will be helpful to everyone.
1. Write a PHP function that can create multi-level directories
2. Write the characteristics of smarty template
Fast speed, compilation, caching technology, plug-in Mechanism, powerful performance logic
3. What functions will be affected by turning on safe_mode in php.ini? Name at least 6.
safe_mode, PHP safe mode, which provides a basic secure shared environment on a PHP development web server with multiple user accounts. When safe mode is turned on, some functions will be completely prohibited, while the functions of other functions will be restricted, such as: chdir, move_uploaded_file, chgrp, parse_ini_file, chown, rmdir, copy, rename, fopen, require, mkdir, unlink etc. Note that in php5.3 and above, safe_mode is deprecated, and in php5.4 and above, this feature is completely removed.
4. To capture remote images locally, what function would you use?
file_get_contents 或者 curl
5. What is PHP’s garbage collection mechanism?
PHP can automatically manage memory and clear objects that are no longer needed. PHP uses reference counting, a pure garbage collection mechanism. Each object contains a reference counter, and each reference connected to the object increases the counter by one. When reference leaves the living space or is set to NULL, the counter is decremented by 1. When an object's reference counter reaches zero, PHP knows that you no longer need to use the object and releases the memory space it occupies.
6. Please write a piece of PHP code to ensure that multiple processes can write to the same file successfully at the same time
Core idea: lock
7. Write a function, try to It may be efficient to extract the file extension from a standard URL, for example: http://www.sina.com.cn/abc/de/fg.php?id=1 You need to extract php or .php
http [host] => www.sina.com.cn [path] => /abc/de/fg.php [query] => id=1 ) $file = basename($arr['path']); $ext = explode('.', $file); return $ext[count($ext)-1]; } // 方案二 function getExt2($url){ $url = basename($url); $pos1 = strpos($url,'.'); $pos2 = strpos($url,'?'); if (strstr($url,'?')) { return substr($url,$pos1+1,$pos2-$pos1-1); } else { return substr($url,$pos1); } } $path = "http://www.sina.com.cn/abc/de/fg.php?id=1"; echo getExt1($path); echo "
"; echo getExt2($path); ?>
Related topics: Use more than five methods to obtain the extension of a file. Requirements: dir/upload.image.jpg. To find .jpg or jpg, you must use PHP’s own processing function for processing. The method cannot be obviously repeated. , can be encapsulated into a function, such as get_ext1 (file_name)
8. Write a function that can traverse all files and subfolders in a folder.
9. Briefly describe the implementation principle of infinite classification in the forum.
Create a category table as follows:
CREATE TABLE category( cat_id smallint unsigned not null auto_increment primary key comment'类别ID', cat_name VARCHAR(30)NOT NULL DEFAULT''COMMENT'类别名称', parent_id SMALLINT UNSIGNED NOT NULL DEFAULT 0 COMMENT'类别父ID' )engine=MyISAM charset=utf8;
Write a function to traverse recursively to achieve infinite classification
10. Write a function to calculate the relative paths of two files, such as b='/a/b/12/34/c.php'; The calculated relative path of a should be ../../c/d
"; echo releative_path($a,$c);//结果是a/b/c/d echo "
"; echo releative_path($a,$d);//结果是./ echo "
"; ?>
11.mysql_fetch_row () and mysql_fetch_array () have What's the difference?
mysql_fetch_row () stores a database column in a zero-based array, with the first column at index 0 of the array, the second column at index 1, and so on.
mysql_fetch_assoc () stores a column of the database in an associative array. The index of the array is the field name. For example, my database query returns the three fields "first_name", "last_name", and "email", and the array The indexes are "first_name", "last_name" and "email".
mysql_fetch_array () can return the values of mysql_fetch_row () and mysql_fetch_assoc () at the same time.
12. There is a web page address, such as the homepage of the PHP Development Resource Network: http://www.phpres.com/index.html, how to get its content?
Method 1 (for PHP5 and higher):
$readcontents=fopen("http://www.phpres.com/index.html","rb"); $contents=stream_get_contents($readcontents); fclose($readcontents); echo $contents;
Method 2:
echo file_get_contents("http://www.phpres.com/index.html");
13. Talk about the understanding of mvc
It consists of model, view, and control Controller Completed application. The model layer is responsible for providing data, and operations related to the database are handed over to the model layer for processing.
The view layer provides an interactive interface and outputs data,
The controller layer is responsible for receiving requests , and distribute it to the corresponding model for processing, and then call the view layer to display.
14.What does the GD library do?
The GD library provides a series of APIs for processing images. You can use the GD library to process images or generate images. On websites, the GD library is usually used to generate thumbnails or to add watermarks to images or to generate reports on website data. GD is built into the PHP system since version 4.3.0.
15.What function can you use to open a file for reading and writing?
A.fget();
B.file_open();
C.fopen();
D.open_file();
Answer: C
fget () This is not a PHP function and will cause an execution error.
file_open () This is not a PHP function and will cause an execution error.
fopen () This is the correct answer. fopen () can be used to open files for reading and writing.
open_file () This is not a PHP function and will cause an execution error.
16. The principle of Smarty
smarty is a template engine. The main purpose of using smarty is to separate logic and external content. If templates are not used, the usual approach is to use PHP code and html code mixed. After using the template, you can put the business logic in the php file, and the template responsible for displaying the content is placed in the html file.
Smarty 在执行 display 方法的时候,读取模板文件,并进行数据替换,生成编译文件,之后每次访问都会直接访问编译文件,读取编译文件省去了读取模板文件,和字符串替换的时间,所以可以更快,编译文件里时间戳记录模板文件修改时间,如果模板被修改过就可以检测到,然后重新编译(编译是把静态内容保存起来,动态内容根据传入的参数不同而不同)。
如果启用了缓存,则会根据编译文件生成缓存文件,在访问的时候如果有缓存文件并且缓存文件没有过期,则直接访问缓存文件。
相关题目 1:能够使 HTML 和 PHP 分离开使用的模板
smarty,phplib 等
相关题目 2:您是否用过模板引擎?如果有您用的模板引擎的名字是?
Smarty
17.PHP 如何实现页面跳转
方法一:php 函数跳转,缺点,header 头之前不能有输出,跳转后的程序继续执行,可用 exit 中断执行后面的程序。
header("Location:网址");//直接跳转 header("refresh:3;url=http://axgle.za.NET");//三秒后跳转
方法二:利用 meta
echo"";
18.PHP 可以和 sql server/oracle 等数据库连接吗?
可以
19. 使用哪些工具进行版本控制?
SVN 或者 CVS,Git
相关题目:您是否用过版本控制软件?如果有您用的版本控制软件的名字是?
TortoiseSVN-1.2.6
20. 写出一个正则表达式,过虑网页上的所有 JS/VBS 脚本(即把 script 标记及其内容都去掉):
过滤 JavaScript 脚本参考:
alert('cc');"; $pattern = '//si'; echo preg_replace($pattern, "脚本内容", $script);//以下内容不显示:脚本内容 ?>
21.Given a line of text $string,how would you write a regular expression to strip all the HTML tags from it?
方案一,使用 PHP 内建函数 strip_tags () 除去 HTML 标签 方案二,自定义函数,如下:
"'])*>/'; return preg_replace($pattern,'',$str); } // 实例 $html = 'ddddd
'; echo strip_html_tags($html); echo "
"; $html = 'bb
'; echo strip_html_tags($html); ?>
aaa
22. 请写一个函数验证电子邮件的格式是否正确(要求使用正则)
preg_match('/^[w-.]+@[w-]+(.w+)+$/',$email);
相关题目:请用正则表达式写一个函数,验证电子邮件的格式是否正确。
23. 请对 POSIX 风格和兼容 Perl 风格两种正则表达式的主要函数进行类比说明
主要区别有以下三种:
preg_replace () 里面的正则可以写成型如:”/.xxx/“而 ereg_replace () 里面的正则需写成型如 “xxx”
preg_replace () 能操作数组,而 ereg_replace () 不可以
在逆向引用用 preg_replace () 可使用 0-99 个,而 ereg_replace () 最多为 9 个
使用 Perl 兼容正则表达式语法的 preg_match () 函数通常是比 ereg () 更快的替代方案。
24. 请写出并说明如何在命令行下运行 PHP 脚本(写出两种方式)同时向 PHP 脚本传递参数?
首先进入 php 安装目录
php -f d:/wamp/www/1.php 其中-f参数指定要执行的php文件 php -r phpinfo(); 其中-r表示直接执行php代码,无需写开始结束标记
25. 使用正则表达式提取一段标识语言(html 或 xml)代码段中指定标签的指定属性值(需考虑属性值对不规则的情况,如大小写不敏感,属性名值与等号间有空格等)。此处假设需提取 test 标签的 attr 属性值,请自行构建包含该标签的串
编写如下函数:
/i"; $arr=array(); $re=preg_match($pattern1,$str,$arr); if($re){ echo"
$arr[6]={$arr[6]}"; }else{ echo"
没找到。"; } } // 示例 $str1=""; getAttrValue($str1,"test","attr");//找test标签中attr属性的值,结果为ddd $str2=" "; getAttrValue($str2,"test2","t1");//找test2标签中t1属性的值,结果为t1 value ?>
26.What does the following code do?Explain what’s going on there.date);
这是把一个日期从 MM/DD/YYYY 的格式转为 DD/MM/YYYY 格式。 输出 26/08/2003
27.What function would you use to redirect the browser to a new page?
A.redir()
B.header()
C.location()
D.redirect()
答案:B
redir () 这不是一个 PHP 函数,会引致执行错误。
header () 这个是正确答案,header () 函数发送头信息,可以用来使浏览器转向到另一个页面,例如:header (“Location:www.search-this.com/“)。
location () 这不是一个 PHP 函数,会引致执行错误。
redirect () 这不是一个 PHP 函数,会引致执行错误。
28.When turned on____________will_________your script with different variables from HTML forms and cookies.
A.show_errors,enable
B.show_errors,show
C.register_globals,enhance
D.register_globals,inject
答案:C
29. 一个函数的参数不能是对变量的引用,除非在 php.ini 中把____设为 on。
allow_call_time_pass_reference 是否启用在函数调用时强制参数被按照引用传递
30. 在 HTML 语言中,页面头部的 meta 标记可以用来输出文件的编码格式,以下是一个标准的 meta 语句 0f66d3c14ca3ca64b0e34f89907a79a4,请使用 PHP 语言写一个函数,把一个标准 HTML 页面���的类似 meta 标记中的 charset 部分值改为 big5。
请注意:
(1) 需要处理完整的 html 页面,即不光此 meta 语句
(2) 忽略大小写
(3)’和” 在此处是可以互换的
(4)’Content-Type’两侧的引号是可以忽略的,但’text/html;charset=gbk’两侧的不行
(5) 注意处理多余空格
编写正则表达式如下:
$reg1="/()/i";
31.PHP 中如何判断一个字符串是否是合法的日期模式:2007-03-13 13:13:13。要求代码不超过 5 行。
32.PHP 中,如何获得一个数组的键值?
使用 key () 可以获得数组中当前元素的键名,使用 current () 则可以返回当前元素的值。
使用 array_keys () 则可以得到数组中所有的键名。
使用 foreach 结构 foreach ($arr as value) 可以通过 value 分别获取键名和值。
33. 如果模板是用 smarty 模板。怎样用 section 语句来显示一个名为 $data 的组。
比如:
$data=array( 0=>array('id'=>8,'name'=>'name1'), 1=>array('id'=>10,'name'=>'name2'), 2=>array('id'=>15,'name'=>'name3') );
写出在模板页的代码?若用 foreach 语句又要怎样显示呢?
用 section 语句:
<{section name=test loop=$data start=0 step=1}> id:<{$data[test].id}>
name:<{$data[test].name}>
<{sectionelse}> 数组为空 <{/section}>
用 foreach 语句:
<{foreach from=$data item=test}> id:<{$test.id}>
name:<{$test.name}>
<{foreachelse}> 数组为空 <{/foreach}>
34. 哪个选项会匹配下边的这个正则表达式?(/.*xyzd/)
A.*****xyz
B.xyz1
C.*xyz2
D.*xyz
答案:C
35. 以下哪个错误无法被标准的错误控制器获取?
A.E_WARNING
B.E_USER_ERROR
C.E_PARSE
D.E_NOTICE
答案:B
36. 以下哪种错误类型无法被自定义的错误处理器捕捉到?
A.E_WARNING
B.E_USER_ERROR
C.E_PARSE
D.E_NOTICE
答案:C
37.(^s)|(s$) 这个正则表达式作用是:__;
匹配以 0 个或多个空白符开头或者 0 个或多个空白符结尾的字符串
38. 编写函数取得上一月的最后一天
"; echo get_last_month_last_day("2013-3-21"); ?>
39. 在很多时候,我们可以通过 apache 的主配置文件来设置对 test 目录的访问权限控制,如 http://IP/test 请问如果需设置 test 下的一个子目录的访问控制权限,是否可以在主配置文件中修改,如果不可以应如何解决。
可以,还可以在需要控制的子目录下创建.htaccess 文件,写入访问控制。
40. 如果我的网站用的 utf-8 编码,为防止乱码出现,都需要注意哪些地方?
从以下几个方面考虑:
数据库中库和表都用 utf8 编码
php 连接 mysql,指定数据库编码为 utf8 mysql_query (“set names utf8”);
php 文件指定头部编码为 utf-8header (“content-type:text/html;charset=utf-8”);
网站下所有文件的编码为 utf8
html 文件指定编码为 utf-8
41. 在 url 中用 get 传值的时候,若中文出现乱码,应该用哪个函数对中文进行编码?
urlencode()
42. 写出两种对变量加密的函数?
md5(str);
43. 如何把 2009-9-2 10:30:25 变成 unix 时间戳?
"; // 格式化Unix时间戳为正常时间格式 echo date("Y-m-d H:i:s",$unix_time); ?>
44. 如何把一个 GB2312 格式的字符串装换成 UTF-8 格式?
45. 如果需要原样输出用户输入的内容,在数据入库前,要用哪个函数处理?
htmlspecialchars 或者 htmlentities
46. 写出五种以上你使用过的 PHP 的扩展的名称(提示:常用的 PHP 扩展)
mb_sring、iconv、curl、GD、XML、socket、MySQL、PDO 等
47. 了解 MVC 模式吗?请写出三种以上目前 PHP 流行的 MVC 框架名称(不区分大小写)
FleaPHP、Zend Framework、CakePHP、Symfony、ThinkPHP、YII、CodeIgniter 等
48.php 中 WEB 上传文件的原理是什么,如何限制上传文件的大小?
上传文件的表单使用 post 方式,并且要在 form 中添加 enctype=’multipart/form-data’。
一般可以加上隐藏域:,位置在 file 域前面。
value 的值是上传文件的客户端字节限制。可以避免用户在花时间等待上传大文件之后才发现文件过大上传失败的麻烦。
使用 file 文件域来选择要上传的文件,当点击提交按钮之后,文件会被上传到服务器中的临时目录,在脚本运行结束时会被销毁,所以应该在脚本结束之前,将其移动到服务器上的某个目录下,可以通过函数 move_uploaded_file() 来移动临时文件,要获取临时文件的信息,使用 $_FILES。
限制上传文件大小的因素有:
客户端的隐藏域 MAX_FILE_SIZE 的数值(可以被绕开)。
服务器端的 upload_max_filesize,post_max_size 和 memory_limit。这几项不能够用脚本来设置。
自定义文件大小限制逻辑。即使服务器的限制是能自己决定,也会有需要个别考虑的情况。所以这个限制方式经常是必要的。
49. 简述 UBB code 的实现原理。
UBB 代码是 HTML 的一个变种,通过程序自定义我们的标签,比如 “[a] PHP 中 UBB 的使用 [/a]” 这样的标签,其实质就是查找 [a][/a] 标签,将其替换成的标准 html,说白了,就是将标准的 html 标记通过技术手段使其简化,其输出出来的结果还是标准的 html。
明白了 ubb 的原理,那么再制作一个简单的 ubb 编辑器就不难了,和 fck 之类的编辑器比较起来,ubb 代码最大的优点就是代码简单,功能很少,简单的 ubb 只需要一个文件,而且 ubb 标签可以自己来定义,更改起来很方便,在 php 中就是利用替换函数就可以将 html 进行标签化,输出时进行标签的转化。
50. 怎么把文件保存到指定目录?怎么避免上传文件重名问题?
可以自己设置上传文件的保存目录,与文件名拼凑形成一个文件路径,使用 move_uploaded_file(),就可以完成将文件保存到指定目录。 可以通过上传的文件名获取到文件后缀,然后使用时间戳 + 随机数 + 文件后缀的方式为文件重新命名,这样就避免了重名。
51._____函数能返回脚本里的任意行中调用的函数的名称。该函数同时还经常被用在调试中,用来判断错误是如何发生的。
debug_print_backtrace()
52. 在 Smarty 模板语法中怎么能遍历数组 ids
{section name=temp loop=$ids} {if $ids[temp].id==500} {$ids[temp].id} {esle} {$ids[temp].id} {/if} {/section}
53. 在 Smarty 模板语法中如何获取当前时间,并且使用 Y-m-d Hs 的格式输出?
使用 {$smarty.now} 来获取当前时间,得到的是 unix 系统时间戳 使用变量调节器进行格式化,如下:
{$smarty.now|date_format:“%Y-%m-%d%H:%M:%S”}
54. 在 Smarty 模板语法中如何获取 php 的全局环境变量
$smarty.get.变量 #显示通过get方式传过来的指定变量的值 $smarty.post.变量 #显示通过post方式传过来的指定变量的值 $smarty.cookies.变量 #显示通过cookie中指定变量的值 $smarty.server.SERVER_NAME #显示server变量值,$_SERVER系列变量 $smarty.env.PATH #显示系统环境变量值,$_ENV系列变量 $smarty.session.变量 #显示session中指定变量的值 $smarty.request.变量 #显示通过post、get、cookie中指定变量的值
55. 在 Smarty 模板中如何用自定义函数
使用模板分隔符包含,传递参数则使用 HTML 属性的方式,例如:{html_image file="pumpkin.jpg"}
56. 列举出你所知道的 php 系统函数库例如,数学函数库
mysql,gd,pdo,XML,zip,filesystem,mail 等
57. 假如让你来写一个函数实现 Utf-8 转 gb2312,那么函数的名称应该怎么命名?
utf8_to_gb2312或者utf8togb2312
58. 请描述如下 URL 重写规则的用意。
RewriteEngineon RewriteCond%{REQUEST_FILENAME}!-f RewriteCond%{REQUEST_FILENAME}!-d RewriteBase/ RewriteRule./index.php[L]
如果 REQUEST_FILENAME 文件存在,就直接访问文件,不进行下面的 rewrite 规则, 如果 REQUEST_FILENAME 目录存在,就直接访问目录,不进行下面的 rewrite 规则, RewriteRule./index.php[L] 的意思是把所有的请求都给 index.php 处理。
59.Warning:Cannot modify header information-headers already sent by (output started at D:srcinit.php:7) in D:srcinit.php on line10 通常什么情况下 php 会报该警告信息?
一般是在 header、set_cookie 以及 session_start 函数前面有输出(包括空格)的情况下,会报该警告信息
The above is the detailed content of Summary of classic PHP core technology interview questions. For more information, please follow other related articles on the PHP Chinese website!