如何从字符串中获取关联数组

时间:2013-02-13 10:59:20

标签: php

我有一个字符串: -

$attributes = "id=1 username=puneet mobile=0987778987 u_id=232";

现在,我希望以下面的关联数组格式得到它: -

$attributes{'id' => 1, 'username' => puneet, 'mobile' => 0987778987, 'u_id' => 232}

注意: - 这些所有值仅以空格分隔。任何帮助都会很明显。

提前致谢

5 个答案:

答案 0 :(得分:3)

$final_array = array();

$kvps = explode(' ', $attributes);
foreach( $kvps as $kvp ) {
    list($k, $v) = explode('=', $kvp);
    $final_array[$k] = $v;
}

答案 1 :(得分:2)

$temp1 = explode(" ", $attributes);
foreach($temp1 as $v){
 $temp2 = explode("=", $v);
 $attributes[$temp2[0]] = $temp2[1];
}

EXPLODE

答案 2 :(得分:2)

我建议你用正则表达式来做:

$str = "id=1 username=puneet mobile=0987778987 u_id=232";
$matches = array();
preg_match_all( '/(?P<key>\w+)\=(?P<val>[^\s]+)/', $str, $matches );
$res = array_combine( $matches['key'], $matches['val'] );

phpfiddle

中的工作示例

答案 3 :(得分:0)

此代码将解决您的问题。

<?php
$attributes = "id=1 username=puneet mobile=0987778987 u_id=232";
$a = explode ( ' ', $attributes) ;
$new_array = array();
foreach($a as $value)
{
    //echo $value;
    $pos = strrpos($value, "=");
    $key = substr($value, 0, $pos);
    $value = substr($value, $pos+1);

    $new_array[$key] = $value;
}
print_r($new_array);
?>

输出此代码

Array ( [id] => 1 [username] => puneet [mobile] => 0987778987 [u_id] => 232 )

答案 4 :(得分:-1)

我认为你必须将这个字符串拆分两次

  1. 除以空间
  2. 除以'='