PHP 是一种广泛使用的脚本语言,用于 Web 开发。PHP 的函数可以帮助开发者更快地完成任务并加快代码编写速度。在这篇文章中,我们将介绍最常用的 PHP 函数列表,供 PHP 开发者参考使用。
一、字符串函数
字符串是 Web 开发中最常用的数据类型之一,并且 PHP 有很多内置的字符串函数来处理它们。
1. strlen()
int strlen ( string $string )
这个函数用于返回给定字符串的长度。
<?php
// 输出 6
echo strlen("Hello!");
?>
2. str_replace()
mixed str_replace ( mixed $search , mixed $replace , mixed $subject [, int &$count ] )
这个函数用于查找字符串中的一个子串,将其替换为另一个字符串。
<?php
// 输出 "Hello, world!"
echo str_replace("world", "PHP", "Hello, world!");
?>
3. trim()
string trim ( string $str [, string $character_mask = " \t\n\r\0\x0B" ] )
这个函数用于删除字符串的首尾空格。
<?php
// 输出 "Hello!"
echo trim(" Hello! ");
?>
二、数组函数
数组是 PHP 中最常用的数据类型之一。PHP 提供了许多内置的数组函数来处理它们。
1. count()
int count ( mixed $array_or_countable [, int $mode = COUNT_NORMAL ] )
这个函数用于统计数组中元素的数量。
<?php
// 输出 3
echo count(array(1, 2, 3));
?>
2. array_push()
int array_push ( array &$array , mixed $value1 [, mixed $... ] )
这个函数用于向数组末尾添加一个或多个元素。
<?php
$fruits = array("apple", "banana");
array_push($fruits, "orange", "raspberry");
// 输出 array("apple", "banana", "orange", "raspberry")
print_r($fruits);
?>
3. array_key_exists()
bool array_key_exists ( mixed $key , array $array )
这个函数用于检查数组中是否存在指定的键。
<?php
$data = array("name" => "John", "age" => 30);
// 输出 true
echo array_key_exists("name", $data);
// 输出 false
echo array_key_exists("email", $data);
?>
三、日期和时间函数
处理日期和时间是 Web 开发的重要组成部分。PHP 为日期和时间处理提供了一些内置的函数。
1. date()
string date ( string $format [, int $timestamp = time() ] )
这个函数用于返回指定格式的日期和时间。
<?php
// 输出类似 "2022-06-12 10:30:30" 的日期和时间
echo date("Y-m-d H:i:s");
?>
2. strtotime()
int strtotime ( string $time [, int $now = time() ] )
这个函数用于解析人类可读的日期和时间字符串并返回 Unix 时间戳。
<?php
// 输出 Unix 时间戳(例如:1748438400)
echo strtotime("12 June 2025");
?>
3. time()
int time ( void )
这个函数用于返回当前的 Unix 时间戳。
<?php
// 输出当前 Unix 时间戳
echo time();
?>
四、文件系统函数
处理文件和目录是 Web 开发的一个重要部分,PHP 为此提供许多内置函数。
1. file_get_contents()
string file_get_contents ( string $filename [, bool $use_include_path = FALSE [, resource $context [, int $offset = 0 [, int $maxlen ]]]] )
这个函数用于以字符串形式读取整个文件。
<?php
// 读取一个文件的内容
echo file_get_contents("example.txt");
?>
2. file_put_contents()
int file_put_contents ( string $filename , mixed $data [, int $flags = 0 [, resource $context ]] )
这个函数用于将字符串写入文件。
<?php
// 将字符串写入文件
file_put_contents("example.txt", "Hello, world!");
?>
3. glob()
array glob ( string $pattern [, int $flags = 0 ] )
这个函数用于获取匹配指定模式的文件路径列表。
<?php
// 获取所有.txt文件的列表
$files = glob("*.txt");
print_r($files);
?>
五、数据库函数
PHP 是一种经常用于访问数据库的语言。它提供了内置函数来与许多常见数据库进行交互。
1. mysqli_connect()
mysqli mysqli_connect ( string $host = ini_get("mysqli.default_host") , string $username = ini_get("mysqli.default_user") , string $passwd = ini_get("mysqli.default_pw") , string $dbname = "", int $port = ini_get("mysqli.default_port") , string $socket = ini_get("mysqli.default_socket") )
这个函数用于连接到 MySQL 数据库。
<?php
// 连接到 MySQL 数据库
$con = mysqli_connect("localhost", "user", "password", "database");
// 检查连接是否成功
if (mysqli_connect_errno()) {
echo "Failed to connect to MySQL: " . mysqli_connect_error();
}
?>
2. mysqli_query()
mixed mysqli_query ( mysqli $link , string $query [, int $resultmode = MYSQLI_STORE_RESULT ] )
这个函数用于在 MySQL 数据库上执行查询。
<?php
// 在 MySQL 数据库上执行查询
$result = mysqli_query($con, "SELECT * FROM users");
// 检查是否有结果
if (mysqli_num_rows($result) > 0) {
// 输出数据
while($row = mysqli_fetch_assoc($result)) {
echo "Name: " . $row["name"] . " - Email: " . $row["email"] . "<br>";
}
} else {
echo "0 results";
}
?>
3. mysqli_close()
bool mysqli_close ( mysqli $link )
这个函数用于关闭到 MySQL 数据库的连接。
<?php
// 关闭到 MySQL 数据库的连接
mysqli_close($con);
?>
总结
在这篇文章中,我们介绍了最常用的 PHP 函数列表。字符串函数、数组函数、日期和时间函数、文件系统函数和数据库函数都是 PHP 开发中必不可少的工具。如果你还没有使用它们,请试试它们,它们可以提高代码效率、减少开发时间并且使你的代码更健壮。