9

私は次のようにjson_decodeを使用しようとしました:

json_decode($string, true, 100, JSON_BIGINT_AS_STRING);

しかし、私はエラーが発生しました:

Warning: json_decode() expects at most 2 parameters, 4 given in /home/content/27/2326027/html/sys/get.php on line 38

どんな反応も適切です

4

1 に答える 1

19

お使いのPHPバージョンはこれらのパラメータをサポートしていないようです。

マニュアルを参照してください:

Version     Description
5.4.0   The options parameter was added.
5.3.0   Added the optional depth. The default recursion depth was increased from 128 to 512
5.2.3   The nesting limit was increased from 20 to 128
5.2.1   Added support for JSON decoding of basic types. 

作成したコードを使用するには、少なくとも5.4.0バージョンが必要です...

于 2012-05-09T02:05:56.367 に答える