|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2001-12-12 07:05 UTC] yohgaki@php.net
[2002-01-02 13:58 UTC] lobbin@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sun Dec 14 11:00:02 2025 UTC |
Fatal error: ht=001262d4 is already destroyed in zend_hash.c:852 in Unknown on line 0 Fatal error: ht=00123ebc is already destroyed in zend_hash.c:519 in Unknown on line 0 Fatal error: ht=00123ebc is already destroyed in zend_hash.c:519 in Unknown on line 0 Fatal error: ht=00123ebc is already destroyed in zend_hash.c:519 in Unknown on line 0 This error appears after writing in a TXT file. But I don't think that the script I've written can be the source of this bug. function finsert($Nom_script,$tableau,$texte,$i){ static $fp, $k; $tableau[$i] .= $texte."\n"; $fp = @fopen ($Nom_script, "w"); if (!$fp) return FALSE; for ($k=0;$k<count($tableau);$k ++ ) fwrite ($fp,$tableau[$k]); fclose ($fp); return TRUE; } A french developper Xavier