<?php
header('Content-Type: image/png');
$im = @imagecreate(100, 100);
$color = imagecolorallocate($im, 10,10,10);
imagefill($im, 50, 50, $color);
imagePNG($im);
imagedestroy($im);
?>
このコードは機能しますが、そこにrequire_onceを配置すると
require_once('file.php');
うまくいかないのはなぜですか?