|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
Patchessysvshm.diff (last revision 2010-10-27 21:09 UTC by marc-bennewitz at arcor dot de)Pull RequestsHistoryAllCommentsChangesGit/SVN commits
[2010-10-27 23:12 UTC] marc-bennewitz at arcor dot de
[2011-08-03 06:15 UTC] marc-bennewitz at arcor dot de
[2018-03-11 22:30 UTC] cmb@php.net
|
|||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Oct 28 20:00:01 2025 UTC |
Description: ------------ It's not possible to get a list of available vars. Test script: --------------- shm_put_var($shm, 123, 'one'); ahm_put_var($shm, 456, 'two'); var_dump(shm_list_vars($shm)); Expected result: ---------------- array(2) { [0]=> int(123) [1]=> int(456) } *or* array(2) { [123]=> string(3)"one" [456]=> string(3)"two" } Actual result: -------------- PHP Fatal error: Call to undefined function shm_list_vars() in ...