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 1. When are you supposed to use endif to end the conditional statement?

When the original if was followed by : and then the code block without braces.

Es util? Agregar comentario Ver comentarios
 

Pregunta 2. Explain the ternary conditional operator in PHP?

Expression preceding the ? is evaluated, if it's true, then the expression preceding the : is executed, otherwise, the expression following : is executed.
E.g $id = isset($_GET['id']) ? $_GET['id'] : false;

Es util? Agregar comentario Ver comentarios
 

Pregunta 3. How do I find out the number of parameters passed into function?

func_num_args() function returns the number of parameters passed in.

Es util? Agregar comentario Ver comentarios
 

Pregunta 4. If the variable $a is equal to 5 and variable $b is equal to character a, what's the value of $$b?

100, it's a reference to existing variable.

Es util? Agregar comentario Ver comentarios
 

Pregunta 5. What's the difference between accessing a class method via -> and via ::?

:: is allowed to access methods that can perform static operations, i.e. those, which do not require object initialization.

Es util? Agregar comentario Ver comentarios
 

Lo mas util segun los usuarios:

Copyright © 2026, WithoutBook.