


11 most frequently asked PHP interview questions, frequently asked PHP test questions
Are you preparing to find a PHP development job, and are also looking for some interviews about PHP Questions and answers? This article shares with you some of the 11 most frequently asked PHP interview questions, as well as the corresponding common answers. Each company has its own interview standards. The interview and questions completely depend on the role you play in the job. Of course It is also closely related to your programming skills.
Question: Please tell me what PHP is in the simplest language?
<p>回答:PHP全称:Hypertext Preprocessor,是一种用来开发动态网站的服务器脚本语言。</p>
Question: What is MVC?
<p>回答:MVC由Model(模型), View(视图)和Controller(控制器)组成,PHP MVC可以更高效地管理好3个不同层的PHP代码。</p> <p><strong>Model</strong>:数据信息存取层。</p> <p><strong>View</strong>:view层负责将应用的数据以特定的方式展现在界面上。</p> <p><strong>Controller</strong>:通常控制器负责从视图读取数据,控制用户输入,并向模型发送数据。</p>
Question: How many ways are there to reference CSS in the page?
<p>回答:在页面中使用CSS有3中方式:</p> <ul> <li>引用外部CSS文件</li> <li>内部定义Style样式</li> <li>内联样式</li> </ul>
Question: Does PHP support multiple inheritance?
<p>回答:不可以。PHP类只能继承一个父类,并用关键字“extended”标识。</p>
Question: What is the difference between echo and print in PHP?
<p>这两个看起来很相似,因为它们都是将一些值打印在屏幕上。但是echo和print的本质区别在于:echo用来输出字符串,显示多个值的时候可以用逗号隔开。只支持基本类型,print不仅可以打印字符串值,而且可以打印函数的返回值。</p>
Question: What is the difference between GET and POST methods?
<p>回答:我们再网页上填写的表单信息都可以通过这两个方法将数据传递到服务器上,当我们使用GET方法是,所有的信息都会出现在URL地址中,并且使用GET方法最多只能传递1024个字符,所以如果在传输量小或者安全性不那么重要的情况下可以使用GET方法。说到POST方法,最多可以传输2MB字节的数据,而且可以根据需要调节。</p>
Question: What is the method to get the image size in PHP?
<p>回答:getimagesize () 获取图片的尺寸</p> <p>Imagesx () 获取图片的宽度</p> <p>Imagesy () 获取图片的高度</p>
Question: What is PEAR in PHP?
<p>回答:PEAR也就是为PHP扩展与应用库(PHP Extension and Application Repository),它是一个PHP扩展及应用的一个代码仓库。</p>
Question: How to upload videos using PHP and MySQL?
<p>回答:我们可以在数据库中存放视频的地址,而不需要将真正的视频数据存在数据库中。可以将视频数据存放在服务器的指定文件夹下,上传的默认大小是2MB,但是我们也可以在php.ini文件中修改max_file size选项来改变。</p>
Question: What are the error types in PHP?
<p>回答:PHP中遇到的错误类型大致有3类。</p> <p><strong>提示</strong>:这都是一些非常正常的信息,而非重大的错误,有些甚至不会展示给用户。比如访问不存在的变量。</p> <p><strong>警告</strong>:这是有点严重的错误,将会把警告信息展示给用户,但不会影响代码的输出,比如包含一些不存在的文件。</p> <p><strong>错误</strong>:这是真正的严重错误,比如访问不存在的PHP类。</p>
Question: How to define constants in PHP?
<p>回答:PHP中使用Define () 来定义常量。</p> <p>define (“Newconstant”, 30);</p>
Question: How to submit a form without using the submit button?
<p>如果我们不想用submit按钮来提交表单,我们也可以用超链接来提交,我们可以这样写代码:</p> <p><a href=”javascript: document.myform.submit();”>Submit Me</a></p>
Original text: Top PHP Job Interview Questions and Answers for 2014 Translation: codeceo – Xiaofeng
Which of the following sentences will not add John to the users array?
$users[] = 'john';
Successfully added John to the users array.
array_add($users,’john’);
Function array_add() has no definition.
array_push($users,‘john’);
Successfully added John to the array users.
$users ||= 'john';
Syntax error.
2. What are the differences between sort(), assort(), and ksort()? Under what circumstances are they used?
sort()
Sort in English alphabetical order according to the value of the elements in the array, and the index keys will be renumbered from 0 to n-1. Mainly used to sort the array when the value of the array index key is irrelevant.
assort()
PHP does not have assort() function, so it may be a typo in asort().
asort()
Like sort(), it arranges the elements of the array in English alphabetical order. The difference is that all index keys are retained, which is especially suitable for sorting associative arrays.
ksort()
Sort in English alphabetical order according to the value of the index key in the array. It is especially suitable for associative arrays that want to sort the index keys.
3. What will the following code produce? Why?
$num =10;
function multiply(){
$num =$num *10;
}
multiply();
echo $num;
Due to function The formula multiply() does not specify $num as a global variable (such as global $num or $_GLOBALS['num']), so the value of $num is 10.
4. What is the difference between a reference and a regular variable? How to pass by reference? Under what circumstances do we need to do this?
Reference passes the address of the variable rather than its value, so when the value of a variable is changed in a function, the entire application sees the new value of the variable.
What a regular variable passes to a function is its value. When the function changes the value of this variable, only this function sees the new value, and other parts of the application still see the old value.
$myVariable = "its' value";
Myfunction(&$myVariable); // Pass parameters by reference. Pass parameters by reference to the function, so that the variables changed by the function can be changed even after The new value is retained after the function ends.
5. What functions can be used to insert function libraries into the currently executing script?
Different understandings of this question will lead to different answers. My first idea is to insert the PHP function library, which is nothing more than include(), include_once(), require(), require_once(), but be careful. Think about it, "function library" should also include com objects and .net function libraries, so our answer should also include com_load and dotnet_load respectively. Next time someone mentions "function library", don't forget these two functions. .
6. What is the difference between foo() and @foo()?
foo() will execute this function, and any interpretation errors, syntax errors, and execution errors will be displayed on the page.
@foo() will hide all the above error messages when executing this function.
Many applications use @mysql_connect() and @mysql_query to hide mysql error messages. I think this is a serious mistake because errors should not be hidden. You must handle them properly and resolve them if possible.
7. How do you debug PHP applications?
I don't do this often, I've tried a lot of different debugging tools and setting them up on a Linux system is not easy at all. But below I will introduce a debugging tool that has attracted much attention recently.
PHP...the rest of the text>>
bool ksort ( array &array [, int sort_flags] )
Sort the array by key name and retain the association between key name and data. This function is mainly used for associative arrays.
Returns TRUE if successful, FALSE if failed.
Example:
$fruits = array("d"=>"lemon", "a"=>"orange", "b"=>"banana", "c"=>"apple");
ksort($fruits);
foreach ($fruits as $key => $val) {
echo "$key = $val\n" ;
}
?>
The above example will output:
a = orange
b = banana
c = apple
d = lemon
bool asort (array &array [, int sort_flags] )
This function sorts the array, and the index of the array remains associated with the unit. Mainly used for sorting associative arrays where the order of cells is important.
Returns TRUE if successful, FALSE if failed.
Example
$fruits = array("d" => "lemon", "a" => "orange", "b" => "banana", " c" => "apple");
asort($fruits);
foreach ($fruits as $key => $val) {
echo "$key = $val\n";
}
?>
The above example will output:
c = apple
b = banana
d = lemon
a = orange
bool sort (array &array [, int sort_flags] )
This function sorts the array. When this function ends the array cells will be rearranged from lowest to highest.
Note: This function assigns new key names to the cells in array. This will delete the original keys rather than just reorder them.
Returns TRUE if successful, FALSE if failed.
Example
$fruits = array("lemon", "orange", "banana", "apple");
sort($fruits);
foreach ( $fruits as $key => $val) {
echo "fruits[".$key."] = " . $val . "\n";
}
?>
The above example will output:
fruits[0] = apple
fruits[1] = banana
fruits[2] = lemon
fruits[3] = orange... The rest of the text>>

作为近年来备受热捧的一门编程语言,Go语言已经成为众多公司与企业的面试热点。对于Go语言初学者而言,在面试过程中遇到相关问题时,如何回答是一个值得探讨的问题。下面列举五个常见的Go语言面试题及解答,供初学者参考。请介绍一下Go语言的垃圾回收机制是如何工作的?Go语言的垃圾回收机制基于标记-清除算法和三色标记算法。当Go程序中的内存空间不够用时,Go垃圾回收器

php中文网作为知名编程学习网站,为您整理了一些React面试题,帮助前端开发人员准备和清除React面试障碍。

本篇文章给大家总结一些值得收藏的精选Web前端面试题(附答案)。有一定的参考价值,有需要的朋友可以参考一下,希望对大家有所帮助。

本篇文章给大家分享50个必须掌握的Angular面试题,会从初学者-中级-高级三个部分来解析这50个面试题,带大家吃透它们!

高并发,几乎是每个程序员都想拥有的经验。原因很简单:随着流量变大,会遇到各种各样的技术问题,比如接口响应超时、CPU load升高、GC频繁、死锁、大数据量存储等等,这些问题能推动我们在技术深度上不断精进。

本篇文章给大家总结一些值得收藏的2023年精选vue高频面试题(附答案)。有一定的参考价值,有需要的朋友可以参考一下,希望对大家有所帮助。

发布文章主要也是巩固自己的知识更加熟练,全凭自己的理解和网上查资料总结出来的,如有不对的地方还望多多指点。下面是我总结的一下常见面试题,为了督促自己还可以会继续更新

每天10道题,100天后,搞定所有前端面试的高频知识点,加油!!!,在看文章的同时,希望不要直接看答案,先思考一下自己会不会,如果会,自己的答案是什么?想过之后再与答案比对,是不是会更好一点,当然如果你有比我更好的答案,欢迎评论区留言,一起探讨技术之美。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

SublimeText3 Linux new version
SublimeText3 Linux latest version

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

WebStorm Mac version
Useful JavaScript development tools

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft
