gpt4 book ai didi

php - 在 PHP 中将 id=1&type=2 之类的字符串转换为数组的最快方法?

转载 作者:可可西里 更新时间:2023-10-31 23:59:46 24 4
gpt4 key购买 nike

我需要把它改成:

$arr['id']=1;

$arr['type']=2;

最佳答案

使用:parse_str() .

void parse_str(string $str [, array &$arr])  

Parses str as if it were the query string passed via a URL and sets variables in the current scope.

例子:

<?php
$str = "first=value&arr[]=foo+bar&arr[]=baz";
parse_str($str);
echo $first; // value
echo $arr[0]; // foo bar
echo $arr[1]; // baz

parse_str($str, $output);
echo $output['first']; // value
echo $output['arr'][0]; // foo bar
echo $output['arr'][1]; // baz

?>

关于php - 在 PHP 中将 id=1&type=2 之类的字符串转换为数组的最快方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2061920/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com