mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-07-03 12:50:36 +08:00
33a3edbaf7
git-svn-id: http://svn.code.sf.net/p/nuttx/code/trunk@5281 42af7a65-404d-4744-a932-0658087f49c3
13 lines
448 B
PHP
13 lines
448 B
PHP
<?php
|
|
/*
|
|
$json = "{\n\"name\": \"Jack (\\\"Bee\\\") Nimble\", \n\"format\": {\"type\": \"rect\", \n\"width\": 1920, \n\"height\": 1080, \n\"interlace\": false,\"frame rate\": 24\n}\n}";
|
|
*/
|
|
$ja["name"] = "Jack (\"Bee\") Nimble";
|
|
$ja["format"]["type"] = "rect";
|
|
$ja["format"]["width"] = 1920;
|
|
$ja["format"]["height"] = 1080;
|
|
$ja["format"]["interlace"] = false;
|
|
$ja["format"]["frame rate"] = 24;
|
|
|
|
echo json_encode($ja);
|
|
?>
|