在 PHP 中将字符串转换为数组

Rana Hasnain Khan 2023年1月30日 2022年5月13日
  1. 使用 PHP 中的 explode() 函数将字符串转换为数组
  2. 使用 PHP 中的 str_split() 函数将字符串转换为数组
在 PHP 中将字符串转换为数组

PHP 是一种强大的脚本语言,它为我们提供了许多内置的解决方案,通过它的内置函数将字符串转换为数组,可用于不同的需求。本教程将讨论使用 PHP 将字符串转换为数组。

使用 PHP 中的 explode() 函数将字符串转换为数组

假设我们有一个水果字符串列表,我们想将它转换成一个数组。explode() 函数用于下面的代码示例。

explode() 函数是一种用于将字符串转换为数组的 PHP 方法。该函数使用需要作为参数传递的分隔符或定界符,它接受 2 个参数,第一个是定界符,第二个是字符串。

代码:

<?php
    $string = "Apple, Banana, Pineapple, Orange";
    $converted = explode(", ", $string);
    print_r($converted);
?>

输出:

在 PHP 中使用 explode 函数将字符串转换为数组

使用 PHP 中的 str_split() 函数将字符串转换为数组

假设我们要将字符串转换为数组,以便将字符串中的每个字母分开存储。我们可以使用函数 str_split() 来实现这个场景。

此函数将通过将字符串分解为小的子字符串来将字符串转换为数组。我们可以定义子字符串的长度,它不需要分隔符或定界符。

代码:

<?php
    $str = "This is a string";
    $newStr = str_split($str, 1);
    print_r($newStr);
?>

输出:

在 PHP 中使用 str_split 函数将字符串转换为数组 1

在最后一个示例中,我们希望将字符串分隔为一个数组,该数组在 3 个字母后分解,而不是分隔每个字母。

代码:

<?php
    $str = "This is a string";
    $newStr = str_split($str, 3);
    print_r($newStr);
?>

输出:

在 PHP 中使用 str_split 函数将字符串转换为数组 2

Rana Hasnain Khan avatar Rana Hasnain Khan avatar

Rana is a computer science graduate passionate about helping people to build and diagnose scalable web application problems and problems developers face across the full-stack.

LinkedIn

相关文章 - PHP String

相关文章 - PHP Array