|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2021-06-02 01:46 UTC] requinix@php.net
-Status: Open
+Status: Not a bug
[2021-06-02 01:46 UTC] requinix@php.net
[2021-06-02 01:47 UTC] ghhta at hgh dot bhg
[2021-06-02 02:08 UTC] santiagopereyra dot 95 at gmail dot com
[2021-06-02 02:16 UTC] requinix@php.net
-Summary: shmop_close returns deprecated but function_exists
recognizes as valid
+Summary: shmop_close is deprecated because shmop uses objects
-Status: Not a bug
+Status: Verified
-Type: Bug
+Type: Documentation Problem
-Package: *General Issues
+Package: Unknown/Other Function
[2021-06-02 02:16 UTC] requinix@php.net
[2021-09-22 09:20 UTC] cmb@php.net
-Status: Verified
+Status: Closed
-Assigned To:
+Assigned To: cmb
[2021-09-22 09:20 UTC] cmb@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Oct 29 08:00:01 2025 UTC |
Description: ------------ In PHP 8.0.6, shmop_close returns me a Deprecated error, but the function_exists method returns me true. I don't know if it's an error in the shmop method, or the function_exists method. configure line: ./configure --enable-mbstring --with-mysqli --enable-shmop --enable-pcntl Test script: --------------- <?php echo var_export(function_exists("shmop_close"), true); if (function_exists("shmop_close")) shmop_close(); Expected result: ---------------- false Actual result: -------------- true Deprecated: Function shmop_close() is deprecated in [...]