|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2012-03-13 09:03 UTC] llongo at sata-hts dot com
[2013-08-13 18:40 UTC] igor at scalr dot com
[2021-07-19 11:15 UTC] cmb@php.net
-Status: Open
+Status: Feedback
-Assigned To:
+Assigned To: cmb
[2021-07-19 11:15 UTC] cmb@php.net
[2021-08-01 04:22 UTC] php-bugs at lists dot php dot net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Oct 30 05:00:01 2025 UTC |
Description: ------------ There is a problem with shm_put_var: when you call shm_put_var with a "long" string as value (100 chars at least) in a shared memory area with some variables already created, after updating the other variables with successive calls to shm_put_var, this variables become non-existent and you cannot get their values with shm_get_var. Test script: --------------- <?php $key = 1000; $test1 = "short string"; $test2 = "long string with at least 100 characters abcdefghilmnopqrstuvzabcdefghilmnopqrstuvzabcdefghilmnopqrstuvzabcdefghilmnopqrstuvz"; $test3 = "different short string"; $res = shm_attach($key); // attach to shared memory if (false === shm_put_var ($res,1,$test1)) { // write var 1 echo "unable to put var 1 with ".$test1."\n"; } if (false === shm_put_var ($res,2,$test1)) { // write var 2 echo "unable to put var 2 with ".$test1."\n"; } if (false === shm_put_var ($res,3,$test2)) { // write var 3 echo "unable to put var 3 with ".$test2."\n"; } if (false === shm_put_var ($res,2,$test3)) { // write again var 2 => after this put var, var 2 and 3 disappear... bug? echo "unable to put var 2 with ".$test1."\n"; } if (false === ($var = shm_get_var ($res,2))) { // get var 2 echo "Error reading variable 2, bug!\n"; var_dump($var); } else { echo "variable 2: ".$var."\n"; } shm_remove($res); // remove shared memory shm_detach($res); exit; ?> Expected result: ---------------- variable 2: different short string Actual result: -------------- Error reading variable 2, bug! bool(false) And php warning: PHP Warning: shm_get_var(): variable key 2 doesn't exist in /root/test_bug_shm.php on line 19