基于php常用函数总结(数组,字符串,时间,文件操作)

本文总结了 PHP 中常用的数组、字符串、时间、文件操作等函数。这些函数在 PHP 中使用频率很高,熟练掌握这些函数可以提高 PHP 开发效率。

基于 PHP 常用函数总结

本文总结了 PHP 中常用的数组、字符串、时间、文件操作等函数。这些函数在 PHP 中使用频率很高,熟练掌握这些函数可以提高 PHP 开发效率。

数组操作

PHP 中的数组是一个非常强大的数据结构,以下是常用的数组操作函数:

array_unique

array_unique 函数从数组中移除重复的值,并返回一个新的不包含重复值的数组。

示例代码:

$array = array('apple', 'banana', 'apple', 'orange');
$unique_array = array_unique($array);
print_r($unique_array);

输出结果:

Array
(
    [0] => apple
    [1] => banana
    [3] => orange
)

array_filter

array_filter 函数将数组中的每个元素传递给回调函数,如果回调函数返回 true,则保留该元素。

示例代码:

$array = array(0, 1, 2, 3, 4);
$new_array = array_filter($array, function($v) {
  return ($v % 2 == 0);
});
print_r($new_array);

输出结果:

Array
(
    [0] => 0
    [2] => 2
    [4] => 4
)

字符串操作

PHP 中的字符串处理函数非常丰富,以下是常用的字符串操作函数:

str_replace

str_replace 函数在字符串中查找指定内容并替换为指定内容。

示例代码:

$str = "Hello, World!";
$new_str = str_replace('World', 'PHP', $str);
echo $new_str;

输出结果:

Hello, PHP!

strpos

strpos 函数用于查找字符串中某一子串首次出现的位置。如果找到,返回该子串的索引;否则返回 false。

示例代码:

$str = "Hello, World!";
$pos = strpos($str, 'World');
if ($pos === false) {
  echo "Not found";
} else {
  echo "Found at position $pos";
}

输出结果:

Found at position 7

时间操作

PHP 中的时间操作函数主要用于获取当前时间和格式化时间。以下是常用的时间函数:

time

time 函数返回当前的 Unix 时间戳。

示例代码:

$current_time = time();
echo $current_time;

输出结果:

1631972546

date

date 函数用于将 Unix 时间戳格式化为指定的日期时间格式。

示例代码:

$current_time = time();
$date_format = 'Y-m-d H:i:s';
$date_string = date($date_format, $current_time);
echo $date_string;

输出结果:

2021-09-18 14:09:06

文件操作

PHP 中的文件操作函数可以用于打开、读取、写入和关闭文件,以下是常用的文件操作函数:

fopen

fopen 函数用于打开一个文件,并返回一个文件指针。

示例代码:

$fp = fopen('example.txt', 'r');
if (!$fp) {
  die('Failed to open file');
}

fgets

fgets 函数用于从文件中读取一行数据。如果读取到的数据为空,则返回 false。

示例代码:

$fp = fopen('example.txt', 'r');
if (!$fp) {
  die('Failed to open file');
}
while (($line = fgets($fp)) !== false) {
  echo $line;
}
fclose($fp);

fwrite

fwrite 函数用于将指定的字符串写入文件。如果写入成功,则返回写入的字节数;否则返回 false。

示例代码:

$fp = fopen('example.txt', 'a');
if (!$fp) {
  die('Failed to open file');
}
$num_bytes = fwrite($fp, "Hello, World!\n");
fclose($fp);
echo "Wrote $num_bytes bytes to file";

输出结果:

Wrote 14 bytes to file

总结

以上是 PHP 中常用的数组、字符串、时间、文件操作等函数。这些函数非常实用,掌握它们可以在 PHP 开发中提高开发效率。建议开发者多多尝试,在实际开发中积累经验,以便更好地应用这些函数。

本文标题为:基于php常用函数总结(数组,字符串,时间,文件操作)

基础教程推荐