errnoみたいに、「最後のエラー」がずっと残るものだと思っていたけど
成功したときはきちんとゼロに戻されてた
<?php $b = json_decode("aa"); print(json_last_error()."\n"); // 4 $b = json_decode("{}"); print(json_last_error()."\n"); // 0
errnoみたいに、「最後のエラー」がずっと残るものだと思っていたけど
成功したときはきちんとゼロに戻されてた
<?php $b = json_decode("aa"); print(json_last_error()."\n"); // 4 $b = json_decode("{}"); print(json_last_error()."\n"); // 0