Ask Your Question
3

What is the process for changing a string with array-like structure into PHP array format?

asked 2023-05-03 16:52:09 +0000

devzero gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
1

answered 2023-05-03 16:54:01 +0000

woof gravatar image

To change a string with an array-like structure into PHP array format, you need to use the json_decode() function in PHP. This function takes in a JSON string and converts it into a PHP array.

Here is an example:

$string = '{"name": "John", "age": 30, "city": "New York"}';

$phpArray = json_decode($string, true);

print_r($phpArray);

Output:

Array
(
    [name] => John
    [age] => 30
    [city] => New York
)

Note that the second parameter of json_decode() is set to true. This tells the function to return an associative array instead of an object.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2023-05-03 16:52:09 +0000

Seen: 8 times

Last updated: May 03 '23