php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #67126 apc_cas()cannot convert false to true
Submitted: 2014-04-24 09:21 UTC Modified: 2016-11-18 21:02 UTC
From: qyl189 at gmail dot com Assigned:
Status: Wont fix Package: APC (PECL)
PHP Version: 5.4.27 OS: windows 8.1
Private report: No CVE-ID: None
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes.
If you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: qyl189 at gmail dot com
New email:
PHP Version: OS:

 

 [2014-04-24 09:21 UTC] qyl189 at gmail dot com
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

Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2016-11-18 21:02 UTC] kalle@php.net
-Status: Open +Status: Wont fix
 [2016-11-18 21:02 UTC] kalle@php.net
APC is no longer supported in favor of opcache that comes bundled with PHP, if you wish to use the user cache, then look at PECL/APCu.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Sun Dec 22 02:01:28 2024 UTC