Home >Backend Development >PHP Tutorial >Several written test questions and answers for PHP programmer interview questions
2. Write the output of the following program
3. Write the output of the following program
4 .Write the output of the following program
5. Write the output of the following program
6. Write the output of the following program
7. Use more than five kinds How to get the extension of a file Required: dir/upload.image.jpg, find .jpg or jpg, It must be processed using the processing functions that come with PHP. The methods cannot be obviously repeated and can be encapsulated into functions, such as get_ext1($file_name), get_ext2($file_name) 2. Algorithm questions 1. Use PHP to describe bubble sort and quick sort algorithms. The object can be an array 2. Use PHP to describe sequential search and binary search (also called binary search) algorithms. Sequential search must consider efficiency, and the object can be an ordered array 3. Write a two-dimensional array sorting algorithm function that is versatile and can call PHP built-in functions #-------------------------- (The following answer is not necessarily the best, just a simple reference) 1 2 Next page Last page |