suchen

Heim  >  Fragen und Antworten  >  Hauptteil

php – Informationen zum Ändern des angegebenen Werts jedes kleinen Arrays in einem zweistelligen Array ohne Verwendung einer Schleife

Sagen wir, ich habe ein 2D-Array:

$a = [
    '0' => [
        'a' => '11',
        'b' => '22',
        'c' => '33'
    ],
    '1' => [
        'a' => '44',
        'b' => '55',
        'c' => '66'
    ],
    ...
];

Für ein solches Array möchte ich alle Werte von „b“ in „99“ ändern, ohne eine Schleife zu verwenden.

Ich habe lange darüber nachgedacht, aber ich hatte keine Ahnung.

ringa_leeringa_lee2770 Tage vor863

Antworte allen(6)Ich werde antworten

  • PHPz

    PHPz2017-05-27 17:45:55

    没有,而且没有意义。
    不管怎么样,你总得变相循环才能去实现遍历。

    Antwort
    0
  • phpcn_u1582

    phpcn_u15822017-05-27 17:45:55

    $a=array_map($a,function($val){
        $val['b']=99;
        return $val;
    })

    Antwort
    0
  • 淡淡烟草味

    淡淡烟草味2017-05-27 17:45:55

    换别的方式,即使你不需要循环,那么那种方式肯定也用了循环

    所以换汤不换药

    Antwort
    0
  • PHPz

    PHPz2017-05-27 17:45:55

    樓上的順序弄亂了,應該 array_map(function,$arr);
    其實樓上說得都沒錯,內置函數都系需要遍歷整個數組,你的問題應該如何使用內置函數實現

    $a=array_map(function($val){
        $val['b']='99';
        return $val;
    },$a);

    Antwort
    0
  • 伊谢尔伦

    伊谢尔伦2017-05-27 17:45:55

    无聊,大的方向不去把握,纠结于细枝末节。所以我也无聊一把吧,haha

        $arr = [
            '0' => [
                'a' => '11',
                'b' => '22',
                'c' => '33'
            ],
            '1' => [
                'a' => '44',
                'b' => '55',
                'c' => '66'
            ]
        ];
        
        $arr   = json_encode($arr);
        
        $match = preg_replace('/"b":"(.+?)"/', '"b":"99"', $arr);
        
        var_dump(json_decode($match, true));

    Antwort
    0
  • 天蓬老师

    天蓬老师2017-05-27 17:45:55

    转字符串 + 正则匹配替换 ?

    Antwort
    0
  • StornierenAntwort