<?php

$devices = array
(
	'iPhone' => array(320, 400),
	'iPhone (Landscape)' => array(400, 600),
);

echo json_encode($devices);

?>