PHP:
1. The difference between echo print and print_r
Echo is a PHP statement, print and print_r are functions. Statements have no return value, but functions can have return values.
Print can only print the value of simple type variables.
Print_r can print complex variable values (arrays or objects)
Echo outputs one or more strings.
2. The difference between mysql_fetch_array() and mysql_fetch_row()
mysql_fetch_array() returns an array generated based on the rows obtained from the result set. If there are no more rows, it returns false. In addition to indexing the data with fields, you can also use fields name as index.
mysql_fetch_row() returns a row from the result set as an enumeration array, returning a numerically indexed array with offset starting from 0.
mysql_fetch_array() is an extended version of mysql_fetch_row().
3. The role of _set() and _construct in PHP object-oriented
_set() ——- is used to set values for attributes, _get() gets the value of attributes
_construct ——- can only be declared in a class A constructor can only call the constructor once every time an object is created. This method cannot be called actively, so it is usually used to perform some useful initialization tasks.
4. The difference between session and cookie in PHP
Cookie is information saved on the client. It is a mechanism that stores data in a remote browser and uses it to track and identify users. PHP's http protocol sends cookies in the header information, so the setcookie() function must be called before other information is output, similar to the restrictions of the header() function.
Session is information stored on the server side. From this perspective, session is more secure than cookie. When a session is created, the server returns an encrypted session_id to the client to identify the user. When the browser is closed, the session will be destroyed, and the value stored in the session will be gone.
5. How to set a cookie and specify the valid time
Bool setcookie(string name, string value, int expire, string path, string domain, bool secure, bool httponly)
Name: cookie variable name
Value: cookie variable value
Expire: Time when the validity period ends
Path: Valid directory
Domain: Valid domain name, top-level or unique
Secure: If the value is 1, the cookie can only be valid on https connections, if it is the default value 0, both http and https can be used
Php set cookie
$value = 'something from somewhere';
setcookie("TestCookie", $value); /* Simple cookie setting*/
setcookie("TestCookie", $value, time()+3600); /* Valid for 1 hour*/
setcookie(“TestCookie”, $value, time()+3600, “/~rasmus/”, “.example.com”, 1); /* Valid directory/~rasmus, valid Domain name example.com and all its subdomains */
?>
Use header() to set cookies;
header(“Set-Cookie: name=$value[;path=$path[;domain=xxx.com[; ]]”); The parameters following
are the same as the parameters of the setcookie function listed above.
Cookie mechanism principle:
a) The server sets a cookie in the client by sending an http Set-Cookie header with the response. (Multiple cookies require multiple headers).
b) The client automatically sends an http cookie header to the server, and the server receives and reads it.
HTTP/1.x 200 OK
X-Powered-By: PHP/5.2.1
Set-Cookie: TestCookie=something from somewhere; path=/
Expires: Thu, 19 Nov 2007 18:52:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0 , pre-check=0
Pragma: no-cache
Content-type: text/html
This line implements the cookie function. After receiving this line
Set-Cookie: TestCookie=something from somewhere; path=/
Browse The server will create a cookie file on the client's disk and write in it:
TestCookie=something from somewhere;
/
This line is where we use setcookie('TestCookie','something from somewhere','/'); The result. That is, the result of using header('Set-Cookie: TestCookie=something from somewhere; path=/');.
6. Access control in PHP object-oriented
Public means global, and both internal and external subclasses of the class can Access
Private means private, only within this class can be called
Protected means protected, only this class or subclass or parent class can access
7. What is MVC in PHP, the role and principle of MVC
MVC is a design Pattern, which forces the application's input, processing, and output to be separated. Using MVC, the application is divided into three core parts: model, view, and controller, each of which handles its own tasks.
The principle of MVC: First, the controller accepts the user's request and decides which model should be called for processing. Then the model uses business logic to process the user's request and return the data. Then the controller uses the corresponding view to format the returned data from the model. data and presented to the user through the presentation layer.
Basic principle: The request from the presentation layer (V) is sent to the controller (C), and the controller calls the business layer (M) according to the request type, and finally calls the presentation layer to display.
8. The difference between include and require in PHP
The two structures are different besides handling failure. include produces a warning, while require results in a fatal error. In other words, if you want to stop when encountering a missing file Use require when processing pages. This is not the case with Include, and the script will continue to execute.
Require is used like require("Myfile.php"); This form is usually placed at the front of the PHP program. Before PHP is executed, the file specified by require will be read in, making it a part of the PHP program web page. part.
Include is used in the same way as above. This program is usually placed in the processing section of the process control. The PHP program web page reads the include file when it reads it. This method can simplify the process of program execution.
When the page is executed to require(), if require is a PHP or HTML page, it will be immediately transferred to execute the page. And include is generally used to include some inc files. For example, you can use the header and header of your website as an inc file, and then include it in each PHP file. include actually just embeds the file you want to include into the current page. And require is to execute the page you requested immediately.
——————————————————————————–
include is loaded when used
require is loaded at the beginning
_once suffix indicates that it has not been loaded Loading
php system has a pseudo-compilation process when loading php programs, which can make the program run faster. But the include document still explains the execution.
There is an error in the include file, and the main program continues to execute.
There is an error in the require file, and the main program is also stopped.
So if the error in the included file has little impact on the system (such as the interface file ), use include, otherwise use the require
include_once() function. The require_once() function will first check whether the content of the target file has been imported before. If so, the same content will not be imported again
10. Calculate the difference between two times: 2009.5.12 2009.5.20
$regist1 = “05/12/2006″;
$regist2 = “10/05/2007″;
list($month1,$day1,$year1)= explode ("/",$regist1);
list($month2,$day2,$year2)= explode("/",$regist2);
$regist1 = mktime(0,0,0,$month1,$day1, $year1);
$regist2 = mktime(0,0,0,$month2,$day2,$year2);
$time_difference = $regist2-$regist1;
11. What protocols do you know? What does the HTTP protocol error message mean?
SMTP (Simple Mail Transfer Protocol) is called the Simple Mail Transfer Protocol, and its goal is to provide users with efficient and reliable mail transmission.
POP's full name is Post Office Protocol, which is the post office protocol, used for receiving emails. It uses TCP port 110. The third version is commonly used now, so it is called POP3 for short.
IMAP is the abbreviation of Internet Message Access Protocol, as the name suggests. , mainly provides a protocol for obtaining information through the Internet.
HTTP (HyperTextTransferProtocol) is the abbreviation of Hypertext Transfer Protocol. It is used to transmit data in WWW mode. For details on the HTTP protocol, please refer to RFC2616.
IE prompt HTTP 403 – Forbidden
IE prompt HTTP 403.9 – Forbidden: Too many connected users
IE prompt HTTP 404 – File cannot be found
IE prompt HTTP 500 – Internal server error

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

方法:1、用“str_replace(" ","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\ \;||\xc2\xa0)/","其他字符",$str)”语句。

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。


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.

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.

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

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),
