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

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

- Page: https://pluginprobe.com/plugins/stream/2.0.2/code/includes/feeds/json.php
- Raw: https://pluginprobe.com/plugins/stream/2.0.2/raw/includes/feeds/json.php
- Modified: 2015-01-15T03:04:24+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/2.0.2/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 json_encode( $records, JSON_PRETTY_PRINT );
} else {
	echo json_encode( $records );
}

```
