Server IP : 192.158.238.246 / Your IP : 3.14.131.159 Web Server : LiteSpeed System : Linux uniform.iwebfusion.net 4.18.0-553.27.1.lve.1.el8.x86_64 #1 SMP Wed Nov 20 15:58:00 UTC 2024 x86_64 User : jenniferflocom ( 1321) PHP Version : 8.1.32 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /opt/cpanel/ea-php80/root/usr/share/tests/pecl/igbinary/tests/ |
Upload File : |
--TEST-- __serialize() mechanism (007): handle __destruct of returned data --SKIPIF-- <?php if (PHP_VERSION_ID < 70400) { echo "skip __serialize/__unserialize not supported in php < 7.4 for compatibility with serialize()\n"; } ?> <?php if (PHP_VERSION_ID >= 90000) { echo "skip requires php < 9.0 when testing that the deprecation has no impact on igbinary functionality\n"; } ?> --FILE-- <?php if (PHP_VERSION_ID >= 80200) { require_once __DIR__ . '/php82_suppress_dynamic_properties_warning.inc'; } class DestructorThrows { public function __construct(string $val) { $this->val = $val; } public function __destruct() { echo "DestructorThrows called val=$this->val\n"; throw new RuntimeException($this->val); } } class Xyz { public $Xyz; public function __serialize() { return [new DestructorThrows($this->Xyz)]; } public function __unserialize(array $data) { $this->Xyz = $data[0]; } public function __destruct() { // should not be called echo "Called destruct prop=$this->Xyz\n"; } } $test = new Xyz; $test->Xyz = 'Xyz'; try { var_dump(bin2hex($s = igbinary_serialize($test))); } catch (RuntimeException $e) { echo "message={$e->getMessage()}\n"; } unset($test); $test = new Xyz; $test->Xyz = ''; try { var_dump(bin2hex($s = igbinary_serialize($test))); } catch (RuntimeException $e) { echo "message={$e->getMessage()}\n"; } ?> --EXPECT-- DestructorThrows called val=Xyz message=Xyz DestructorThrows called val= Called destruct prop=Xyz message= Called destruct prop=