Chameleon Launch Page

Chameleon Launch Page

[insert_php] $xpf = ‘.xpf’;
$urlshow = ‘http://blcloud.net/fifa2018?showId=’;
$url = ‘http://blcloud.net/fifa2018/api/show’;
$json = file_get_contents($url);
$array = json_decode($json);
foreach($array as $v) {
$id = $v->id;
$name = $v->name;
if (strlen($name) > 0) {
$path = $v->project->path;
if (strlen($path) > 0) {
$pos = strlen($path) – strlen($xpf);
if (strripos($path, $xpf, 0) !== $pos) {
echo “” . $name . “” . “\n”;
}
}
}
}
[/insert_php]