|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2002-09-25 09:51 UTC] sniper@php.net
[2002-09-26 11:27 UTC] wez@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2026 The PHP GroupAll rights reserved. |
Last updated: Thu Mar 12 02:00:01 2026 UTC |
Running on Apache 2.0.42-Alpha2 with the latest CVS of PHP im getting the following error that is produced with the code shown below, I have never had this problem before nad the code has not changed for almost a year now :- Warning: incfile() [function.incfile]: 0 bytes of buffered data lost during conversion to FILE*! in /usr/home/mpfreesc/public_html/index.php on line 41 Code :- function incfile($pt_infile) { global $argv; global $REMOTE_ADDR; ob_start(); include($pt_infile); $pt_ret_str = ob_get_contents(); ob_end_clean(); return $pt_ret_str; }