<?php

$v=array(
    "Image"=> array (
        0=> array (
            "id"=> 150,
            "Tags"=> array(
                0=> array (
                    "id"=> 200,
                    "text"=>"John Doe",
                    "left"=> 250,
                    "top"=> 50,
                    "url"=> "person.php?id=200" ,
                    "isDeleteEnable"=> true
                ),
                1=> array (
                    "id"=> 400,
                    "text"=> "Michael Smith",
                    "left"=> 420,
                    "top"=> 45,
                    "width"=> 120,
                    "height"=> 120,
                    "isDeleteEnable"=> true
                ),
                2=> array (
                    "id"=> 500,
                    "text"=> "Peter Parker" ,
                    "left"=> 55 ,
                    "top"=> 40, 
                    "url"=> "person.php?id=500" ,
                    "isDeleteEnable"=> false
                )
            )
        )
    )       
);

echo "Original Array:" . PHP_EOL;
var_dump($v);
echo PHP_EOL . "Serialized Version:" . PHP_EOL . serialize($v);
