字符串操作函数
strlen()
:返回字符串的长度。
$str = "hello";
echo strtoupper($str); // Output: HELLO
strtoupper()
:将字符串转换为大写。
$str = "hello";
echo strtoupper($str); // Output: HELLO
strtolower()
:将字符串转换为小写。
$str = "WORLD";
echo strtolower($str); // Output: world
substr()
:根据起始位置和长度提取字符串的一部分。
$str = "Hello, world!";
echo substr($str, 7, 5); // Output: world
数字操作函数
intval()
:将值转换为整数。
$num = 10.5;
echo intval($num); // Output: 10
loatval()
:将值转换为浮点数。
$num = "3.14";
echo floatval($num); // Output: 3.14
number_format()
:格式化带有千位分隔符的数字。
$num = 1000;
echo number_format($num); // Output: 1,000
数组操作函数
count()
:计算数组中元素的数量。
$arr = [1, 2, 3, 4, 5];
echo count($arr); // Output: 5
array_push()
:将一个元素添加到数组末尾。
$arr = [1, 2, 3];
array_push($arr, 4);
print_r($arr); // Output: [1, 2, 3, 4]
array_pop()
:删除并返回数组的最后一个元素。
$arr = [1, 2, 3, 4];
$lastElement = array_pop($arr);
echo $lastElement; // Output: 4
这些只是 PHP 中常用函数的几个示例。 还有更多功能可用于各种任务。 您可以浏览 PHP 文档以获取有关不同函数及其用法的更多详细信息。