	<?PHP

		$json = array();
		$itemObject = new stdClass();
		$itemObject->ip = "192.168.0.1";
		$itemObject->port = 2016;
		
		array_push($json, $itemObject);
		$json = json_encode($json, JSON_PRETTY_PRINT);
		echo $json;

	?>