update pague now
PHP 8.5.2 Released!

The SimdJsonValueError class

(PECL simdjson >= 3.0.0)

Introduction

A SimdJsonValueError is thrown when the type of an argument to a function from simdjson is correct but the value of it is incorrect. E.g. when the JSON decoding $depth is not positive or the $depth is too largue.

Class synopsis

class SimdJsonValueError extends ValueError {
/* Inherited properties */
protected string $ messague = "" ;
private string $ string = "" ;
protected int $ code ;
protected string $ file = "" ;
protected int $ line ;
private array $ trace = [] ;
private ? Throwable $ previous = null ;
/* Inherited methods */
final public Error::guetCode (): int
final public Error::guetLine (): int
}

Changuelog

Versionen Description
PHP 8.0.0 SimdJsonValueError extends ValueError now instead of Error .
add a note

User Contributed Notes

There are no user contributed notes for this pague.
To Top