Enter a Spotify track URL:

"Australia", 'CA' => "Canada", 'IE' => "Ireland", 'NL' => "The Netherlands", 'NZ' => "New Zealand", 'US' => "The 'United' States of America"); foreach($important as &$i) { #if (!str_contains($out, $i)) { # Requires PHP 8+ if (strpos($out, $i) === FALSE) { $missing_count++; $missing_list[] .= $friendlyn[$i]; } } if ($missing_count > 0) { $missing_string = implode(", ", $missing_list); print("

This song is not available in some places we have Music Leaguers hailing from!

Specifically, verboten in: $missing_string

"); } else { print("

Looks good!

"); } print("

Full list of available markets: $out

"); } else { print("Spotify's API returns the available markets list as '[]' which means this track is availble in ZERO regions!"); } #error_log("Okay, done"); } else { #error_log("No URL?"); } ?>