1、使用PHP的file_get_contents()函数
file_get_contents() 函数把整个文件读入一个字符串中。
示例:
<?php
header('content-type:image/jpg;');
$content=file_get_contents('1.jpg');
echo $content;
?>输出:
2、使用echo+img标签
使用PHP插入图片,实际还是输出HTML代码。
示例:
<?php echo "<img src='1.jpg' />"; ?>
输出:
以上就是php中如何显示图片?的详细内容,更多请关注Gxl网其它相关文章!
声明:本文来自网络,不代表【好得很程序员自学网】立场,转载请注明出处:http://www.haodehen.cn/did62557