企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
## :-: 图片显示**** ``` <?php function PE_img_by_path($PE_imgpath = "") { if (file_exists($PE_imgpath)) { $PE_imgarray = pathinfo($PE_imgpath); $iconcontent = file_get_contents($PE_imgpath); header("Content-type: image/" . $PE_imgarray["extension"]); header('Content-length: ' . strlen($iconcontent)); echo $iconcontent; die(0); } return false; } ?> ```