Funciones Comunes en PHP- Parte 2

isset() función

Comprueba si una variable está configurada y tiene un valor.

$name = "John";  
if(isset($name)) {  
    echo "Variable 'name' is set.";  
} else {  
    echo "Variable 'name' is not set.";  
}  

 

empty() función

Comprueba si una variable está vacía o no existe.

$email = "";  
if(empty($email)) {  
    echo "Email is not provided.";  
} else {  
    echo "Email is provided.";  
}  

 

exit() o función die()

Detiene la ejecución del programa y muestra un mensaje si es necesario.

$age = 15;  
if($age < 18) {  
    echo "You are not old enough to access.";  
    exit();  
}  
echo "Welcome to the website.";  

 

continue estructura de control

Salta la iteración actual de un bucle y pasa a la siguiente iteración.

for($i = 1; $i <= 10; $i++) {  
    if($i == 5) {  
        continue;  
    }  
    echo $i. " ";  
}  
// Output: 1 2 3 4 6 7 8 9 10  

 

break estructura de control

Termina un bucle o la ejecución actual.

$num = 1;  
while(true) {  
    echo $num. " ";  
    if($num == 5) {  
        break;  
    }  
    $num++;  
}  
// Output: 1 2 3 4 5  

 

función var_dump()

La función se utiliza para mostrar información detallada sobre una variable o valor. Le permite ver el tipo de datos, el valor y el tamaño de la variable.

$number = 10;  
$string = "Hello";  
$array = [1, 2, 3];  
  
var_dump($number); // int(10)  
var_dump($string); // string(5) "Hello"  
var_dump($array); // array(3) { [0]=> int(1) [1]=> int(2) [2]=> int(3) }  

 

print() función

La función se utiliza para mostrar un valor en la pantalla. Es similar a echo, pero devuelve un valor de 1 si tiene éxito.

$name = "John";  
  
print "Hello, ". $name; // Hello, John  

 

función imprimir_r()

La función se utiliza para mostrar información sobre una variable o matriz en un formato legible. Es útil cuando desea ver la estructura y los valores de una matriz.

$array = [1, 2, 3];  
  
print_r($array);  
/* Output:  
Array  
(  
    [0] => 1  
    [1] => 2  
    [2] => 3  
)  
*/  

 

Lưu ý: Las funciones var_dump, print y print_r se utilizan a menudo con fines de depuración, ya que no devuelven un valor y solo muestran información en la pantalla.