程序员最近都爱上了这个网站  程序员们快来瞅瞅吧!  it98k网:it98k.com

本站消息

站长简介/公众号

  出租广告位,需要合作请联系站长

+关注
已关注

分类  

暂无分类

标签  

暂无标签

日期归档  

暂无数据

图片的替代文字不出现

发布于2022-08-18 22:51     阅读(1167)     评论(0)     点赞(16)     收藏(0)


我试图在图像上添加替代文字,但在我看来这不起作用。这是我尝试的方法

// get the info from the db
$sql = "SELECT name, caption, alt FROM images order by id desc LIMIT $offset, $rowsperpage";
  $result = mysqli_query($sql, $conn) or trigger_error("SQL", E_USER_ERROR);

   // while there are rows to be fetched...
  while ($list = mysqli_fetch_assoc($result)) {
   // echo data

  echo "<img src=\"upload/".$list['name']."\" alt=\"".$list['alt']."\" /></a>";
  echo $list['caption']; 

有了图像和标题,一切都很好。但是在页面的 html 中我没有看到替代文本。

更新:var_dump($list)

array (size=3) 'name' => string '3ce08e141493823aeeded14f5dda6573.jpg' (length=36)  
'caption' => string 'image 1' (length=14) 
'alt' => string 'testing alt text 2' (length=18)

解决方案


尝试这个:

Pl check $list['alt'] is not empty & also set title value, so that you can test properly ...

- 谢谢



所属网站分类: 技术文章 > 问答

作者:黑洞官方问答小能手

链接:http://www.phpheidong.com/blog/article/356724/60e82c717c829417183c/

来源:php黑洞网

任何形式的转载都请注明出处,如有侵权 一经发现 必将追究其法律责任

16 0
收藏该文
已收藏

评论内容:(最多支持255个字符)