<?php 

$json = <<<EOD
{
	"items": [{
		"tag": "#Q8PC0JP8",
		"name": "UNIÃO LENDÁRIA",
		"type": "open",
		"location": {
			"id": 32000038,
			"name": "Brazil",
			"isCountry": true,
			"countryCode": "BR"
		},
		"badgeUrls": {
			"small": "https://a...content-available-to-author-only...s.com/badges/70/E75PzYKp5iqzLoCBSKfmURN757zafvXZUL29KhLSFs0.png",
			"large": "https://a...content-available-to-author-only...s.com/badges/512/E75PzYKp5iqzLoCBSKfmURN757zafvXZUL29KhLSFs0.png",
			"medium": "https://a...content-available-to-author-only...s.com/badges/200/E75PzYKp5iqzLoCBSKfmURN757zafvXZUL29KhLSFs0.png"
		},
		"clanLevel": 1,
		"clanPoints": 414,
		"requiredTrophies": 200,
		"warFrequency": "always",
		"warWinStreak": 0,
		"warWins": 1,
		"warTies": 0,
		"warLosses": 2,
		"isWarLogPublic": true,
		"members": 1
	}]
}
EOD;

$info = json_decode($json, true);

echo $info['items'][0]['name'];

