在php8中使用explode()函数和implode()函数实现字符串和数组之间的转换。
1、使用explode()函数把字符串按照一定的规则拆分为数组中的元素,并且形成数组。
使用explode()函数把字符串转换数组,示范代码:
<?php
$string = "https://www.phpfw.com/tag/html/,css,https://www.phpfw.com/tag/java/script,php,https://www.phpfw.com/tag/mysql/";
$https://www.phpfw.com/tag/array/ = explode(",", $string);
echo "<pre>";
print_r($array);
?>
以上代码在PHP8中的运行结果为:
Array
(
[0] => html
[1] => css
[2] => javascript
[3] => php
[4] => mysql
)
2、使用implode()函数把数组中的元素,按照一定的连接方式转换为字符串。
使用implode()函数把数组中的元素,转换为字符串,示范代码:
<?php
$array = array("html", "css", "javascript", "php", "mysql");
$string = implode(",", $array);
echo $string;
?>
以上代码在PHP8中的运行结果为:
html,css,javascript,php,mysql
到此为止,在PHP8中使用explode()函数和implode()函数实现字符串和数组之间的转换就讲解完毕了。