2015-09-12 51 views
1

檢查我想要一個簡單的只是檢查JSON文件包含最新在beganing比它應該做的一些功能,如果JSON文件包含了比它應該做的beganing 視頻一些其他功能。 這是我的PHP代碼---如果別人的真實情況在PHP

$url = 'http://www.hello.se/3209406a5d0f95&limit=15'; 
$json = json_decode(file_get_contents($url), true); 

if($json['latest']['videos']){ // how can i just put a condition where if it is true than 
//do some function or if it is not true go to the next condition which is else if($json['videos']){ ... 

     // do some functions 
     } 
else if($json['videos']){ 
// do some functions 

我也試過像這樣----

$url = 'http://www.hello.se/3209406a5d0f95&limit=15'; 
$json = json_decode(file_get_contents($url), true); 

if($json['latest']['videos'] === true){ 

     // do some functions 
     } 
else if($json['videos'] === true){ 
// do some functions 

這不是爲我工作的,任何人都可以幫我解決這個問題。 任何建議將非常感謝,先進的感謝。

+0

可以顯示JSON文件怎麼樣子? – Pinguin895

回答

2

使用isset()http://php.net/manual/en/function.isset.php

if(isset($json['latest']['videos'])){ // how can i just put a condition where if it is true than 
//do some function or if it is not true go to the next condition which is else if($json['videos']){ ... 

     // do some functions 
     } 
else if(isset($json['videos'])){ 
// do some functions 
+0

非常感謝您的回答:) –

+0

不客氣,:)標記爲已解決如果是這樣的話 –