1. In PHP, the name of the current script (excluding path and query string) is recorded in the predefined variable (1); and the URL linking to the current page is recorded in the predefined variable (2). Copy the code The code is as follows: 2. The execution program segment will output (3). Copy the code The code is as follows: 3. In HTTP 1.0, the meaning of status code 401 is (4); if the prompt "File not found" is returned, the header function can be used, and its statement is (5). Copy the code The code is as follows: 4. The function of array function arsort is (6); the function of statement error_reporting(2047) is (7). Copy the code The code is as follows: 5. Write a regular expression to filter all JS/VBS scripts on the web page (that is, remove the tags and their contents): (9). Copy the code The code is as follows: 6. To install PHP as an Apache module, first use statement (10) in the file http.conf to dynamically load the PHP module, Then use statement (11) to cause Apache to process all files with the extension php as PHP scripts. Copy the code The code is as follows: 7. The statements include and require can include another file into the current file. The difference between them is (12); in order to avoid including the same file multiple times, you can use the statement (13) to replace them. Copy the code The code is as follows: 8. The attributes of the class can be serialized and saved to the session, so that the entire class can be restored later. The function to be used is (14). Copy the code The code is as follows: 9. The parameter of a function cannot be a reference to a variable, unless (15) is set to on in php.ini. Copy the code The code is as follows: 10.The meaning of LEFT JOIN in SQL is (16). If tbl_user records the student’s name (name) and student number (ID), tbl_score records the student number (ID), test score (score), and test subject (some students were expelled after taking the test, and there is no record of them), If you want to print out the name of each student and the corresponding total score of each subject, you can use SQL statement (17). Copy the code The code is as follows: 11.. In PHP, heredoc is a special string, and its end flag must be (18). Copy the code The code is as follows: 12. Use PHP to print out the time of the previous day in the format of 2006-5-10 22:21:21 Copy the code The code is as follows: 13.The difference between echo(), print(), and print_r() Copy the code The code is as follows: 14. How to implement string flip? Copy the code The code is as follows: 15. A method to intercept Chinese text strings without garbled characters. Copy the code The code is as follows: 16. Use php to write a simple query to find all the content named "Zhang San" and print it out Table name User Name Tel Content Date Zhang San 13333663366 Graduated from college 2006-10-11 Zhang San 13612312331 Bachelor degree 2006-10-15 Zhang Si 021-55665566 Graduated from technical secondary school 2006-10-15 Copy the code The code is as follows: 17. How to use the following classes and explain what they mean? class test Answer: Usage: Copy the code The code is as follows: The $num variable is md5ed twice and then returned. The parameters in the second md5 are added with En after the first md5($num)18. Use more than five ways to get the extension of a file Required: dir/upload.image.jpg, find out .jpg or jpg, Copy the code The code is as follows: 19. How to modify the survival time of SESSION This library allows you to process and display graphics files in various formats. Another common use of it is to create graphics files. Another option besides GD is ImageMagick, but this function library is not built into PHP and must be installed on the server by the system administrator. Answer: In fact, Session also provides a function session_set_cookie_params(); to set the Session's For lifetime, this function must be called before the session_start() function is called: <?php 20. Please write a function to achieve the following functions: Convert the string "open_door" to "OpenDoor", "make_by_id" to "MakeById". Copy the code The code is as follows: 21. How to use PHP environment variables to get the content of a web page address? How to get the ip address? Copy the code The code is as follows: 22. Find the difference between two dates, such as the date difference between 2007-2-5 ~ 2007-3-6 Copy the code The code is as follows: 23. There are three columns A, B, and C in the table. Use SQL statements to implement this: when column A is greater than column B, select column A, otherwise select column B. When column B is greater than column C, select column B, otherwise select column C. Copy the code The code is as follows: 24. Please briefly describe the method to optimize the execution efficiency of SQL statements in the project. From what aspects, how to analyze the performance of SQL statements? Copy the code The code is as follows: 25.What is the difference between mysql_fetch_row() and mysql_fetch_array()? Copy the code The code is as follows: 26.What is the following code used for? please explain. $date='08/26/2003';print ereg_replace("([0-9]+)/([0-9]+)/([0-9]+)","\2/\1 /\3",$date); Copy the code The code is as follows: 27.What is the GD library used for? Copy the code The code is as follows: 28. Please give an example of what methods you use to speed up page loading during your development process Copy the code The code is as follows: 29. To prevent SQL injection vulnerabilities, the __addslashes___ function is generally used. 30.What is the difference between passing values, passing references, and passing addresses in PHP? Copy the code The code is as follows: 31. How to determine whether a window has been blocked through javascript Copy the code The code is as follows: 33. For websites with large traffic, what methods do you use to solve the traffic problem Copy the code The code is as follows: The above is the entire content of this article. I hope it will be helpful to everyone learning php. |