1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
|
--TEST--
shm_remove_var() tests
--EXTENSIONS--
sysvshm
--SKIPIF--
<?php
if (!function_exists('ftok')){ print 'skip'; }
?>
--FILE--
<?php
$key = ftok(__FILE__, 't');
$s = shm_attach($key, 1024);
try {
shm_put_var($s, 1, "test string");
} catch (TypeError $exception) {
echo $exception->getMessage() . "\n";
}
var_dump(shm_remove_var($s, -10));
var_dump(shm_get_var($s, 1));
var_dump(shm_remove_var($s, 1));
var_dump(shm_get_var($s, 1));
var_dump(shm_remove_var($s, 1));
var_dump(shm_get_var($s, 1));
shm_remove($s);
echo "Done\n";
?>
--EXPECTF--
Warning: shm_remove_var(): Variable key -10 doesn't exist in %s006.php on line %d
bool(false)
string(11) "test string"
bool(true)
Warning: shm_get_var(): Variable key 1 doesn't exist in %s006.php on line %d
bool(false)
Warning: shm_remove_var(): Variable key 1 doesn't exist in %s006.php on line %d
bool(false)
Warning: shm_get_var(): Variable key 1 doesn't exist in %s006.php on line %d
bool(false)
Done
|