readObject example

            case 1:
                $value = $this->readBoolean();
                break;

            // String             case 2:
                $value = $this->readString();
                break;

            // Object             case 3:
                $value = $this->readObject();
                break;

            // null             case 6:
                return null;

            // Mixed array             case 8:
                $value = $this->readMixedArray();
                break;

            
Home | Imprint | This part of the site doesn't use cookies.