Dize eşdeğer PHP Array

1 Cevap php

Herkes bir dize için bir dizi dönüştürme ardışık bir çözümü var merak ediyorum.

İşte ne demek istediğimi:

Aşağıdaki içeriğe sahip bir dizi $args ki:

Array
(
    [0] => $hello
    [1] => 411px
    [Jeeves] => Array
        (
            [compiling] => 1
        )

)

Çağırdıktan sonra Sonuç arr_to_string($args):

array($hello,"411px", "Jeeves" => array("compiling" => 1));

Note: It recognizes the $ sign in front and therefore does not add quotes. It does the same for numbers.

Herkes herhangi bir çözüm var ya bana doğru yönde işaret edebilir?

Thanks! Matt Mueller