【发布时间】:2021-03-14 04:30:30
【问题描述】:
我无法在代码点火器中显示图像。
怎么了?
<!-- Preloader -->
<div class="preloader flex-column justify-content-center align-items-center">
<img class="animation__wobble" src="<? echo base_url();?>assets/dist/img/AdminLTELogo.png" alt="AdminLTELogo" height="60" width="60">
</div>
【问题讨论】:
-
具体出了什么问题?图片 URL 格式是否错误或不存在?这些可能会有所帮助:Codeigniter php short tags not working 和 How do you enable short-tag syntax in codeigniter?
-
新 PHP 上的短标签应该是
<?= base_url() ?>,避免 ?> 因为它不被支持并且与 xml 语法有冲突。 -
还是不行
标签: php codeigniter