| 
        php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login | 
 PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits             
             [2016-11-18 21:02 UTC] kalle@php.net
 
-Status: Open
+Status: Wont fix
  [2016-11-18 21:02 UTC] kalle@php.net
  | 
    |||||||||||||||||||||||||||
            
                 
                Copyright © 2001-2025 The PHP GroupAll rights reserved.  | 
        Last updated: Tue Nov 04 04:00:01 2025 UTC | 
Description: ------------ apc_cas() is unable to update value like true or false Test script: --------------- apc_store('ss', false); echo apc_fetch('ss') ? 1: 0; apc_cas('ss', false, true); echo apc_fetch('ss')? 1: 0; Expected result: ---------------- 01 Actual result: -------------- 00