PHP 中的常用函数- 第 2 部分

isset() 功能

检查变量是否已设置并具有值。

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

 

empty() 功能

检查变量是否为空或不存在。

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

 

exit() 或 函数 die()

停止程序的执行并在需要时显示一条消息。

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

 

continue 控制结构

跳过循环的当前迭代并移至下一个迭代。

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

 

break 控制结构

终止循环或当前执行。

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

 

var_dump() 函数

函数用于显示有关变量或值的详细信息。 它允许您查看变量的数据类型、值和大小。

$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() 功能

函数用于在屏幕上显示一个值。 它与 类似 echo,但如果成功则返回值 1

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

 

print_r() 函数

函数用于以可读格式显示有关变量或数组的信息。 当您想要查看数组的结构和值时,它非常有用。

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

 

Lưu ý: var_dumpprintprint_r 函数通常用于调试目的,因为它们不返回值,仅在屏幕上显示信息。