|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2006-02-25 17:18 UTC] derick@php.net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Dec 04 17:00:01 2025 UTC |
Description: ------------ file_put_contents does't work in callback funcion Reproduce code: --------------- <? function a($i){ file_put_contents('buffer.txt',$i); return($i); } ob_start('a'); ?> Page contents Expected result: ---------------- put output buffer to file Actual result: -------------- file not created !