<?php
$_json = '{ "DeviceTicketInfo":{ "UserId":27, "Ticket ":18005956, "DevInfo ": "sunsoft-123456 "}, "AvailableStations ":[{ "Id ":2, "No ":2, "Name ": "01-SUNSOFT "}]}';
$_json  = json_decode($_json);
print_r($_json->DeviceTicketInfo->UserId);

echo "\n# Associative Array Example #\n";

$_json = '{ "DeviceTicketInfo":{ "UserId":27, "Ticket ":18005956, "DevInfo ": "sunsoft-123456 "}, "AvailableStations ":[{ "Id ":2, "No ":2, "Name ": "01-SUNSOFT "}]}';
$_json  = json_decode($_json, true);
print_r($_json['DeviceTicketInfo']['UserId']);