|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2012-12-05 13:34 UTC] ab@php.net
[2012-12-05 13:47 UTC] ab@php.net
-Status: Open
+Status: Feedback
[2012-12-05 15:43 UTC] kogarasi dot cross at gmail dot com
[2012-12-05 15:43 UTC] kogarasi dot cross at gmail dot com
-Status: Feedback
+Status: Open
[2012-12-07 12:22 UTC] ab@php.net
[2012-12-07 12:25 UTC] ab@php.net
[2012-12-07 12:25 UTC] ab@php.net
-Status: Open
+Status: Feedback
[2012-12-07 16:09 UTC] kogarasi dot cross at gmail dot com
-Status: Feedback
+Status: Open
[2012-12-07 16:09 UTC] kogarasi dot cross at gmail dot com
[2012-12-07 20:27 UTC] ab@php.net
[2012-12-08 13:55 UTC] kogarasi dot cross at gmail dot com
[2012-12-10 08:37 UTC] ab@php.net
-Status: Open
+Status: Feedback
[2012-12-10 08:37 UTC] ab@php.net
[2013-02-18 00:36 UTC] pecl-dev at lists dot php dot net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Oct 30 03:00:01 2025 UTC |
Description: ------------ add array to apc. and fetch. i use current to return value. and current return value is false. Test script: --------------- $retval = apc_add('key', array(1,2,3,4,5)); echo $retval; // true $retval = apc_fetch('key'); var_dump($retval); // array( 1,2,3,4,5 ); var_dump(current($retval)); // error: false reset($retval); var_dump(current($retval)); // OK: 1 apc_delete('key');