Preguntas y respuestas de entrevista mas solicitadas y pruebas en linea
Plataforma educativa para preparacion de entrevistas, pruebas en linea, tutoriales y practica en vivo

Desarrolla tus habilidades con rutas de aprendizaje enfocadas, examenes de practica y contenido listo para entrevistas.

WithoutBook reune preguntas de entrevista por tema, pruebas practicas en linea, tutoriales y guias comparativas en un espacio de aprendizaje responsivo.

Preparar entrevista

PHP preguntas y respuestas de entrevista

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

Diferencias relacionadas

PHP vs JSP

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

The output is displayed directly to the browser.

Es util? Agregar comentario Ver comentarios
 

Pregunta 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.

Es util? Agregar comentario Ver comentarios
 

Pregunta 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.

Es util? Agregar comentario Ver comentarios
 

Pregunta 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.

Es util? Agregar comentario Ver comentarios
 

Pregunta 25. How do you define a constant?

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

Es util? Agregar comentario Ver comentarios
 

Lo mas util segun los usuarios:

Copyright © 2026, WithoutBook.