(抱歉我的英文不好,希望你能理解) 有沒有什麼辦法可以解碼這個數組? http://status.mc-host.cz/s8.mc-host.cz:25637-feed解碼對象數組
隨着Json_decode它沒有奏效:/
我需要借這個內容,例如:
If ($data['status'] == "online") {
//something
} Else {
//offline
}
感謝幫助
(抱歉我的英文不好,希望你能理解) 有沒有什麼辦法可以解碼這個數組? http://status.mc-host.cz/s8.mc-host.cz:25637-feed解碼對象數組
隨着Json_decode它沒有奏效:/
我需要借這個內容,例如:
If ($data['status'] == "online") {
//something
} Else {
//offline
}
感謝幫助
這是一個print_r的語句的輸出。最簡單的方法來檢查,看看你的情況是否會像這樣。
$online = false;
$data = file("http://status.mc-host.cz/s8.mc-host.cz:25637-feed", FILE_IGNORE_NEW_LINES);
foreach($data as $line){
if (strpos($line, "[Status] => online") !== false){
$online = true;
}
}
if($online){
// do something
} else {
// offline
}
值得注意的是,此解決方案不解碼數組,它只是檢查是否滿足您的條件。
我不知道,但是這可能工作:
function print_r_reverse($in) {
$lines = explode("\n", trim($in));
if (trim($lines[0]) != 'Array') {
// bottomed out to something that isn't an array
return $in;
} else {
// this is an array, lets parse it
if (preg_match("/(\s{5,})\(/", $lines[1], $match)) {
// this is a tested array/recursive call to this function
// take a set of spaces off the beginning
$spaces = $match[1];
$spaces_length = strlen($spaces);
$lines_total = count($lines);
for ($i = 0; $i < $lines_total; $i++) {
if (substr($lines[$i], 0, $spaces_length) == $spaces) {
$lines[$i] = substr($lines[$i], $spaces_length);
}
}
}
array_shift($lines); // Array
array_shift($lines); // (
array_pop($lines); //)
$in = implode("\n", $lines);
// make sure we only match stuff with 4 preceding spaces (stuff for this array and not a nested one)
preg_match_all("/^\s{4}\[(.+?)\] \=\> /m", $in, $matches, PREG_OFFSET_CAPTURE | PREG_SET_ORDER);
$pos = array();
$previous_key = '';
$in_length = strlen($in);
// store the following in $pos:
// array with key = key of the parsed array's item
// value = array(start position in $in, $end position in $in)
foreach ($matches as $match) {
$key = $match[1][0];
$start = $match[0][1] + strlen($match[0][0]);
$pos[$key] = array($start, $in_length);
if ($previous_key != '') $pos[$previous_key][1] = $match[0][1] - 1;
$previous_key = $key;
}
$ret = array();
foreach ($pos as $key => $where) {
// recursively see if the parsed out value is an array too
$ret[$key] = print_r_reverse(substr($in, $where[0], $where[1] - $where[0]));
}
return $ret;
}
}
從PHP手冊:http://www.php.net/manual/en/function.print-r.php#93529
這是一個PHP的print_r的結果()。 json_decode解碼JSON。這不是JSON。 – transilvlad
您是從應用程序打印此數組,還是嘗試從Web檢索此數組並在應用程序中使用它? –
解碼什麼?比鏈接給你一個數組。你只需要用for或foreach遍歷數組。 – PachinSV