我有一个包含此代码的脚本picture.php
<?php
if(isset($_GET['pic']) && isset($_SESSION))
{
$img = imageCreateFromPng($_GET['pic']);
header("Content-type: image/png");
imagePng($img);
imagedestroy($img);
}
else
{
echo 'hidden';
die;
}
?>
当会话未启动时,我试图隐藏从picture.php生成的图像。我有另一个名为show.php的页面,其中包含一个代码
<?php
session_start();
echo '<img src="picture.php?pic=apple.png" />' ;
?>
问题是即使会话在show.php中启动,图像也不会显示在show.php 中,为什么?