function cURL ($url){ .... }

$output = cURL('http://mservice.fanatik.com.tr/LeagueTemplate');
$json = json_decode($output);

$league = $json->League;

foreach ($league as $m) {echo $m->sportName . ', ' . $m->showName;}