가장 많이 묻는 면접 질문과 답변 & 온라인 테스트
면접 준비, 온라인 테스트, 튜토리얼, 라이브 연습을 위한 학습 플랫폼

집중 학습 경로, 모의고사, 면접 준비 콘텐츠로 실력을 키우세요.

WithoutBook은 주제별 면접 질문, 온라인 연습 테스트, 튜토리얼, 비교 가이드를 하나의 반응형 학습 공간으로 제공합니다.

Prepare Interview

PHP 면접 질문과 답변

Test your skills through the online practice test: PHP Quiz Online Practice Test

관련 차이점

PHP vs JSP

Ques 21. What does a special set of tags <?= and ?> do in PHP?

The output is displayed directly to the browser.

도움이 되었나요? Add Comment View Comments
 

Ques 22. What's the difference between include and require? -

It's how they handle failures. If the file is not found by require(), it will cause a fatal error and halt the execution of the script. If the file is not found by include(), a warning will be issued, but execution will continue.

도움이 되었나요? Add Comment View Comments
 

Ques 23. I am trying to assign a variable the value of 0123, but it keeps coming up with a different number, what's the problem?

PHP Interpreter treats numbers beginning with 0 as octal.

도움이 되었나요? Add Comment View Comments
 

Ques 24. Would I use print "$a dollars" or "{$a} dollars" to print out the amount of dollars in this example?

In this example it wouldn't matter, since the variable is all by itself, but if you were to print something like "{$a},000,000 mln dollars", then you definitely need to use the braces.

도움이 되었나요? Add Comment View Comments
 

Ques 25. How do you define a constant?

Via define() directive, like define ("MYCONSTANT", 100);

도움이 되었나요? Add Comment View Comments
 

Most helpful rated by users:

Copyright © 2026, WithoutBook.