Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
PHPで、intが0から1に変更されたときに画像を表示するにはどうすればよいですか?私は持っています;
$url = "forums.bukkit.org/alerts.json"; $page = file_get_contents($url); $json_arr = json_decode($string,true); return $json_arr['_visitor_alertsUnread'];
json_arrが>0の場合、画像を表示するにはどうすればよいですか?
if($json_arr['_visitor_alertsUnread']) echo "seen picture!"; else echo "not seen picture!";