Searched refs:shm_put_var (Results 1 – 8 of 8) sorted by relevance
/php-src/ext/sysvshm/tests/ |
H A D | 005.phpt | 16 shm_put_var($s, -1, "test string"); 17 shm_put_var($s, 0, new stdclass); 18 shm_put_var($s, 1, array(1,2,3)); 19 shm_put_var($s, 2, false); 20 shm_put_var($s, 3, null); 31 shm_put_var($s, 3, "test"); 32 shm_put_var($s, 3, 1); 33 shm_put_var($s, 3, null);
|
H A D | 004.phpt | 2 shm_put_var() tests 16 var_dump(shm_put_var($s, -1, "qwerty")); 17 var_dump(shm_put_var($s, 10, "qwerty")); 18 var_dump(shm_put_var($s, 10, "qwerty")); 21 var_dump(shm_put_var($s, 11, $string)); 32 Warning: shm_put_var(): Not enough shared memory left in %s004.php on line %d
|
H A D | gh16591.phpt | 2 GH-16591 (Assertion error in shm_put_var) 18 shm_put_var($mem, 1, new C);
|
H A D | 006.phpt | 17 shm_put_var($s, 1, "test string");
|
/php-src/ext/sysvshm/ |
H A D | sysvshm_arginfo.h | 38 ZEND_FUNCTION(shm_put_var); 47 ZEND_FE(shm_put_var, arginfo_shm_put_var)
|
H A D | sysvshm.stub.php | 21 function shm_put_var(SysvSharedMemory $shm, int $key, mixed $value): bool {} function
|
H A D | sysvshm.c | 235 PHP_FUNCTION(shm_put_var) in PHP_FUNCTION() argument
|
/php-src/ext/sysvsem/tests/ |
H A D | sysv.phpt | 38 if (!shm_put_var($shm_id, 1, "Variable 1")) { 47 if (!shm_put_var($shm_id, 2, "Variable 2")) {
|
Completed in 11 milliseconds