我在localhost上使用XAMPP for APACHE服务器:8080(我必须更改默认端口才能工作)。假设我需要运行其余的html。 这是当前的代码:
home.html的
<body>
<script src="main/profile.php"></script>
</body>
profile.php
<?php
$imagepath ="omj/logo.jpg";
$image = imagecreatefromjpeg( $imagepath);
header('Content-Type: image/jpeg');
imagejpeg($image);
?>
我尝试引用以下文章无济于事:
http://www.configure-all.com/howto_display_image.php
How to display images from a folder using php - PHP
修改 我只需移动html文件夹中的图像文件夹即可使用HTML工作。现在问题仍然存在,为什么不运行php代码来显示图像?
图像路径位于html文件的目录中。像这样:/ htmlfolder/imagefolder/image.jpg而html文件是/htmlfolder/file.html
答案 0 :(得分:0)
如此简单,“PHP最佳使用单引号”。在字符串中使用标准html!
echo ' <img src="php.gif" /> ';
答案 1 :(得分:0)
试试这个
<?php $input = '<img src="/image/your.jpg" title="you are title " alt="any"/>'; $sx = simplexml_load_string($input); var_dump($sx); ?>
答案 2 :(得分:0)
html文件无法运行php代码。
将您的文件名从home.html更改为home.php。
然后改变这一行:
<script src="main/profile.php"></script>
到
<?php echo '<img src="omj/logo.jpg"/>'; ?>