|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2006-02-25 17:16 UTC] derick@php.net
[2010-05-01 17:48 UTC] afshin dot meh at gmail dot com
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Dec 04 16:00:01 2025 UTC |
Description: ------------ file_get_contents does't work in callback funcion Reproduce code: --------------- <? function add($i){ $i.=file_get_contents('add.txt'); return($i); } ob_start('add'); ?> Page contents Expected result: ---------------- add to output buffer data from file Actual result: -------------- data not added !