fork download
  1. <?php
  2.  
  3. $arr = [
  4. [
  5. 'MIGX_id' => 2,
  6. 'title' => 'Lorem ipsum',
  7. 'image' => 'icon/p_security.svg',
  8. 'desc' => 'Lorem ipsum dolor sit amet.',
  9. 'tarif' => '[{"MIGX_id":"1","title":"","title1":"Light","title2":"Premium","title3":"VIP"},{"MIGX_id":"2","title":"Sed ut perspiciatis","title1":"checkbox","title2":"checkbox","title3":"checkbox"},{"MIGX_id":"3","title":"Sed ut perspiciatis","title1":"checkbox","title2":"checkbox","title3":"checkbox"},{"MIGX_id":"4","title":"Sed ut perspiciatis","title1":"checkbox","title2":"checkbox","title3":"checkbox"},{"MIGX_id":"5","title":"","title1":"BY NOW","title2":"BY NOW","title3":""}]'
  10. ]
  11. ];
  12. print_r($arr);
  13. echo "------------------------\n";
  14. foreach($arr as $value)
  15. {
  16. print_r(json_decode($value['tarif'], true));
  17. }
Success #stdin #stdout 0.02s 24704KB
stdin
Standard input is empty
stdout
Array
(
    [0] => Array
        (
            [MIGX_id] => 2
            [title] => Lorem ipsum
            [image] => icon/p_security.svg
            [desc] => Lorem ipsum dolor sit amet.
            [tarif] => [{"MIGX_id":"1","title":"","title1":"Light","title2":"Premium","title3":"VIP"},{"MIGX_id":"2","title":"Sed ut perspiciatis","title1":"checkbox","title2":"checkbox","title3":"checkbox"},{"MIGX_id":"3","title":"Sed ut perspiciatis","title1":"checkbox","title2":"checkbox","title3":"checkbox"},{"MIGX_id":"4","title":"Sed ut perspiciatis","title1":"checkbox","title2":"checkbox","title3":"checkbox"},{"MIGX_id":"5","title":"","title1":"BY NOW","title2":"BY NOW","title3":""}]
        )

)
------------------------
Array
(
    [0] => Array
        (
            [MIGX_id] => 1
            [title] => 
            [title1] => Light
            [title2] => Premium
            [title3] => VIP
        )

    [1] => Array
        (
            [MIGX_id] => 2
            [title] => Sed ut perspiciatis
            [title1] => checkbox
            [title2] => checkbox
            [title3] => checkbox
        )

    [2] => Array
        (
            [MIGX_id] => 3
            [title] => Sed ut perspiciatis
            [title1] => checkbox
            [title2] => checkbox
            [title3] => checkbox
        )

    [3] => Array
        (
            [MIGX_id] => 4
            [title] => Sed ut perspiciatis
            [title1] => checkbox
            [title2] => checkbox
            [title3] => checkbox
        )

    [4] => Array
        (
            [MIGX_id] => 5
            [title] => 
            [title1] => BY NOW
            [title2] => BY NOW
            [title3] => 
        )

)