|
|
|
|
@ -67,11 +67,12 @@
|
|
|
|
|
<div class="dl-horizontal">
|
|
|
|
|
<p><a href="javascript:void(0);" onclick="$('#note_original_data').toggle()" >原始数据</a></p>
|
|
|
|
|
<p> <div style="display: none;" id="note_original_data">
|
|
|
|
|
<?php
|
|
|
|
|
$array = json_decode($note->OPN_rawContent, true);
|
|
|
|
|
$jsonPretty = json_encode($array, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES);
|
|
|
|
|
echo "<pre>$jsonPretty</pre>";
|
|
|
|
|
?>
|
|
|
|
|
<pre><?php
|
|
|
|
|
$array = json_decode($note->OPN_rawContent, true); // var_dump($array);
|
|
|
|
|
$jsonPretty = json_encode($array, JSON_PRETTY_PRINT | JSON_UNESCAPED_UNICODE | JSON_UNESCAPED_SLASHES);
|
|
|
|
|
echo htmlspecialchars($jsonPretty);
|
|
|
|
|
?>
|
|
|
|
|
</pre>
|
|
|
|
|
<?php // echo str_replace('","', '"<br/>"', json_encode(json_decode($note->OPN_rawContent, true), JSON_UNESCAPED_UNICODE)); ?>
|
|
|
|
|
</div></p>
|
|
|
|
|
</div>
|
|
|
|
|
|