<?php
header('Content-Type: text/html; charset=utf-8');
$json = file_get_contents("https://twitter.com/trends?pc=true&personalized=false&show_context=true&src=module&woeid=23424969");
$json = json_decode($json);
preg_match_all('/data-trend-name="(.*?)"/', $json->module_html, $fastphp);
$rastgelegundem = $fastphp[1][array_rand($fastphp[1])];
echo $rastgelegundem;
?>