1--TEST-- 2Test unserialize() with the 'S' format emits a deprecation. 3--FILE-- 4<?php 5 6var_dump(unserialize('S:1:"e";')); 7var_dump(unserialize('S:1:"\65";')); 8 9?> 10--EXPECTF-- 11Deprecated: unserialize(): Unserializing the 'S' format is deprecated in %s on line %d 12string(1) "e" 13 14Deprecated: unserialize(): Unserializing the 'S' format is deprecated in %s on line %d 15string(1) "e" 16