Çıktı Firefox JSON veri

2 Cevap php

PHP kullanarak (Firefox yer imleri ihraç) çıkışı belirli JSON veri mümkündür.

Bu Firefox doğru UTF-8 bir şekilde ihraç değil bugüne kadar, bu verileri yeniden kodlamak sahip koddur. Ben de dosyanın sonundan itibaren, Izleyen kaldırmak.

<?php
// Read the file blah blah
$hFile = "../uploads/james.json";
$hFile = file_get_contents($hFile);
$hFile = utf8_encode($hFile);
// Remove the trailing comma because Firefox is lazy!!!!
$hFile = substr($hFile, 0, strlen($hFile)-3) . "]}";

$hDec = json_decode(fixEncoding($hFile));

foreach($hDec['uri'] as $hURI) {
	// Output here
}

// Fixes the encoding to UTF-8
function fixEncoding($in_str) {
	$cur_encoding = mb_detect_encoding($in_str);
	if($cur_encoding == "UTF-8" && mb_check_encoding($in_str,"UTF-8")){
		return $in_str;
	}else{
		return utf8_encode($in_str);
	}
}
?>

Ben var_dump kullanarak, ayrı bütün verilerden herhangi bir çıktı almak mümkün olmuştur.

2 Cevap

VolkerK diyor, sen önce virgül soyunmak zorunda hem ] and }:

// ... row 7
// Remove the trailing comma because Firefox is lazy
$hFile = preg_replace('/,\s*([\]}])/m', '$1', $hFile);

// ... or using str_replace
$hFile = str_replace(',]', ']', str_replace(',}', '}', $hFile));

Ancak, URI en imlerinin (Ne yapmaya çalışıyorsun ne varsayıyorum) erişmeye çalıştığınız yol işe yaramaz.

Dosya formatı / şema tekrar kontrol edin.

While json_decode() is able to decode

<?php
$c = '{"title":""}';
$bookmarks = json_decode($c);
var_dump($bookmarks);
it fails on
$c = '{"title":"",}';
The "empty" element at the end throws the parser off. And that's exactly what my bookmarks.json looks like
{"title":"", ... "children":[]},]}

edit: json.org linkler Comparison of php json libraries. Ve onların karşılaştırma tablosu örneğin göre zend json firefox 'bookmark.json ayrıştırmak gerekir. Ama henüz denemedim.

edit2: why not simply test it....? Yes, zend json is able to parse the unmodified bookmarks.json

require 'Zend/Json.php';

$encodedValue = file_get_contents('Bookmarks 2009-05-24.json'); $phpNative = Zend_Json::decode($encodedValue); var_dump($phpNative);

prints
array(7) {
  ["title"]=>
  string(0) ""
  ["id"]=>
...
      ["children"]=>
      array(0) {
      }
    }
  }
}