Skip to content

Commit

Permalink
Add JSON ext
Browse files Browse the repository at this point in the history
  • Loading branch information
kuzmichus committed May 12, 2015
1 parent a1f9357 commit 145aff4
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions data/json.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
<?php
return array(
'functions' => array(
'json_decode',
'json_encode',
'json_last_error_msg',
'json_last_error'
),
'constants' => array(
'JSON_ERROR_NONE',
'JSON_ERROR_DEPTH',
'JSON_ERROR_STATE_MISMATCH',
'JSON_ERROR_CTRL_CHAR',
'JSON_ERROR_SYNTAX',
'JSON_ERROR_UTF8',
'JSON_ERROR_RECURSION',
'JSON_ERROR_INF_OR_NAN',
'JSON_ERROR_UNSUPPORTED_TYPE',
'JSON_HEX_TAG',
'JSON_HEX_AMP',
'JSON_HEX_APOS',
'JSON_HEX_QUOT',
'JSON_FORCE_OBJECT',
'JSON_NUMERIC_CHECK',
'JSON_BIGINT_AS_STRING',
'JSON_PRETTY_PRINT',
'JSON_UNESCAPED_SLASHES',
'JSON_UNESCAPED_UNICODE'
),
'php_version' => '5.2.0',
);

0 comments on commit 145aff4

Please sign in to comment.