PHP: Một số câu hỏi khi phỏng vấn


Khóa học qua video:
Lập trình Python All Lập trình C# All SQL Server All Lập trình C All Java PHP HTML5-CSS3-JavaScript
Đăng ký Hội viên
Tất cả các video dành cho hội viên

1. See the following commands:

$a = "V1";
$a[10] = "Study";

What is result if you run this command:

echo $a;

2. How to get the different between 2 dateparts?

3. What is the output of those statements:

$a='a';
$b=$$a;
echo $b; //a

4. What is the output of those statements:

$a='V1';
$b=&$a;
echo $b; //V1

5. What is the output of those statements:

$a='V1';
$b=$$a;
echo $b; //Error

6. How to implement a package in Laravel?

7. What caching does Laravel use?

8. How to enable a long query in Laravel?

9. Do you know Git and Github?

10. Do you know Source Version Control?

11. Do you know about RESTful API?

12. Is the following query True or False:
Select * from Product where 1=?

13. What is the difference between the slice() function and the splice() function?

» Tiếp: Sử dụng hàm mail() để gửi email trong PHP
« Trước: Hướng dẫn chuyển hướng từ HTTP sang HTTPS
Khóa học qua video:
Lập trình Python All Lập trình C# All SQL Server All Lập trình C All Java PHP HTML5-CSS3-JavaScript
Đăng ký Hội viên
Tất cả các video dành cho hội viên
Copied !!!