Linux SRV-16 6.18.44-paas #1 SMP PREEMPT_DYNAMIC Thu Aug 13 10:08:12 UTC 2026 x86_64
/
opt
/
php-7.1
/
share
/
test
/
Cache_Lite
/
tests
/
//opt/php-7.1/share/test/Cache_Lite/tests/pearbug19711.phpt
--TEST-- Cache_Lite::Cache_Lite (PEAR bug #19711) --INI-- track_errors=Off --FILE-- <?php /** * Test for Pear Bug #19711 * * @see https://pear.php.net/bugs/bug.php?id=19711 * * @package Cache_Lite * @category Caching * @author Markus Tacker <tacker@php.net> */ require_once __DIR__ . '/../Cache/Lite.php'; require_once __DIR__ . '/tmpdir.inc'; $options = array( 'cacheDir' => tmpDir() . '/', 'lifeTime' => 60, 'automaticSerialization' => true ); $Cache_Lite = new Cache_Lite($options); $data = array('apples', 'oranges'); $Cache_Lite->save($data, 'array_cached'); $fetched_data = $Cache_Lite->get('array_cached'); var_dump($data === $fetched_data); ?> --GET-- --POST-- --EXPECT-- bool(true)