# stream/3.0.7/includes/feeds/json.php

Stream – Activity Log &amp; Audit Trail, version 3.0.7. 8 lines.

- Page: https://pluginprobe.com/plugins/stream/3.0.7/code/includes/feeds/json.php
- Raw: https://pluginprobe.com/plugins/stream/3.0.7/raw/includes/feeds/json.php
- Modified: 2016-07-14T01:50:38+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/stream/3.0.7/code/includes/feeds/json.php#L10-L20`.

```php
<?php
header( 'Content-type: application/json; charset=' . get_option( 'blog_charset' ), true );
if ( version_compare( PHP_VERSION, '5.4', '<' ) ) {
	echo wp_stream_json_encode( $records ); // xss ok
} else {
	echo wp_stream_json_encode( $records, JSON_PRETTY_PRINT ); // xss ok
}

```
