<?php
$str = "['text', 'text', 100, ['text', false], false, ['text', 200], 'text']";
$json = str_replace("'", '"', $str);
print_r(json_decode($json));
- Output for 7.1.25 - 7.1.33, 7.2.0 - 7.2.33, 7.3.0 - 7.3.33, 7.4.0 - 7.4.33, 8.0.0 - 8.0.30, 8.1.0 - 8.1.33, 8.2.0 - 8.2.29, 8.3.0 - 8.3.25, 8.4.1 - 8.4.12
- Array
(
[0] => text
[1] => text
[2] => 100
[3] => Array
(
[0] => text
[1] =>
)
[4] =>
[5] => Array
(
[0] => text
[1] => 200
)
[6] => text
)
preferences:
142.64 ms | 408 KiB | 5 Q