<?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');
它不起作用为什么?