用于查看文章标题和文章中的一张图像的简单模块,

发布于 2024-11-05 19:58:13 字数 690 浏览 0 评论 0原文

我需要创建简单的模块来查看文章标题和文章中的一张图像,问题是我不知道如何从文章中获取一张图像。

这是我的代码:

<?php
  defined('_JEXEC') or die('Restricted access');
$db =& JFactory::getDBO();
$query = "
  SELECT ".$db->nameQuote('images')." ,".$db->nameQuote('title')."  
    FROM ".$db->nameQuote('#__content').";
  ";

  $db->setQuery($query);
  $rows = $db->loadObjectList();
  foreach ($rows as $row)
  {
     //echo "<p>The article text of '$row->fulltext' is $row->id </p>\n";
       echo "<p>The article image of '$row->images' </p>\n";
       echo "<p>The article title of '$row->title' </p>\n";

  }
  
?>

I need to created simple module to view article title and one image from the article, The problem is I have no idea how to get one image from the article.

This is my code:

<?php
  defined('_JEXEC') or die('Restricted access');
$db =& JFactory::getDBO();
$query = "
  SELECT ".$db->nameQuote('images')." ,".$db->nameQuote('title')."  
    FROM ".$db->nameQuote('#__content').";
  ";

  $db->setQuery($query);
  $rows = $db->loadObjectList();
  foreach ($rows as $row)
  {
     //echo "<p>The article text of '$row->fulltext' is $row->id </p>\n";
       echo "<p>The article image of '$row->images' </p>\n";
       echo "<p>The article title of '$row->title' </p>\n";

  }
  
?>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

别把无礼当个性 2024-11-12 19:58:13

标准 Joomla 文章没有用于存储图像日期的字段。图像直接插入到内文或全文字段中。为此,您需要使用正则表达式来查找图像的第一个实例。

另一种选择是安装众多 CCK 类型扩展之一,这些扩展允许您定义内容类型或向 Joomla 文章添加额外字段。 K2 所做的正是您在默认安装中尝试做的事情,包括显示标题和图像的模块。

Standard Joomla articles do not have a field for storing image date. Images are inserted directly in to the introtext or fulltext fields. You would need to use a regular expression to find the first instance of an image in order to do this.

The other option is to install one of many CCK type extensions that allow you to define content types or add extra fields to the Joomla article. K2 does exactly what you are trying to do with the default installation including the module to display the title and image.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文