Properties
Properties existing in the Solar_Json_Checker
class.
Public
None.
Protected
$_ascii_class
(array) Map of 128 ASCII characters into the 32 character classes.
The remaining Unicode characters should be mapped to S_ETC.
$_config
(array) Collection point for configuration values.
Inherited from Solar_Base.
Note that you do not define config defaults in $_config directly.
<?php
// DO NOT DO THIS
protected $_config = array(
'foo' => 'bar',
'baz' => 'dib',
);
Instead, define config defaults in a protected property named for the class, withan underscore prefix.
For exmple, a "Vendor_Class_Name" class would define the default config array in "$_Vendor_Class_Name". This convention lets child classes inherit parent config keys and values.
<?php
// DO THIS INSTEAD
protected $_Vendor_Class_Name = array(
'foo' => 'bar',
'baz' => 'dib',
);
$_state_transition_table
(array) State transition table.
$_the_stack
(array) The stack to maintain the state of nested structures.
$_the_top
(int) Pointer for the top of the stack.
Private
None.