|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2003-02-28 00:50 UTC] sniper@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sat Dec 06 16:00:01 2025 UTC |
I did a simple test on my WinXP/Apache1.3.27/PHP4.2.3, <?php function aaaaa(){ $fp=fopen("aaa.log","a+b"); fclose($fp); } register_shutdown_function("aaaaa"); ?> First time, I configue PHP as CGI mode; after run I found new file aaa.log shows up, then I deleted it. Second time, I configue PHP as ApacheModule mode; after run I found NOTHING.