Searched refs:shmop_read (Results 1 – 5 of 5) sorted by relevance
/PHP-7.1/ext/shmop/tests/ |
H A D | 002.phpt | 36 echo PHP_EOL, '## shmop_read function tests ##'; 38 var_dump(shmop_read()); 42 var_dump(shmop_read($shm_id, -10, 0)); 47 var_dump(shmop_read($shm_id, 0, -10)); 88 ## shmop_read function tests ## 89 Warning: shmop_read() expects exactly 3 parameters, 0 given in %s on line %d 92 Warning: shmop_read(): start is out of range in %s on line %d 95 Warning: shmop_read(): count is out of range in %s on line %d
|
H A D | 001.phpt | 33 echo "data in memory is: " . shmop_read($shm_id, 0, $written) . "\n"; 45 echo "data in memory is: " . shmop_read($shm_id, 0, $written) . "\n"; 69 echo "data in memory is: " . shmop_read($shm_id, 0, strlen($write_d1 . $write_d2)) . "\n";
|
/PHP-7.1/ext/shmop/ |
H A D | php_shmop.h | 34 PHP_FUNCTION(shmop_read);
|
H A D | shmop.c | 85 PHP_FE(shmop_read, arginfo_shmop_read) 228 PHP_FUNCTION(shmop_read) in PHP_FUNCTION() argument
|
H A D | README | 32 char shmop_read(int shmid, int start, int count)
|
Completed in 9 milliseconds