当前位置:首页 > 文章列表 > 文章 > php教程 > PHP中解析和处理HTML/XML以创建RSS源的示例

PHP中解析和处理HTML/XML以创建RSS源的示例

2023-10-01 23:05:03 0浏览 收藏

小伙伴们有没有觉得学习文章很有意思?有意思就对了!今天就给大家带来《PHP中解析和处理HTML/XML以创建RSS源的示例》,以下内容将会涉及到,若是在学习中对其中部分知识点有疑问,或许看了本文就能帮到你!

PHP是一种非常流行的服务器端脚本语言,广泛应用于Web开发。在Web开发中,经常需要解析和处理HTML或XML文档,以生成RSS(Really Simple Syndication)源。本文将演示一个示例,展示如何使用PHP解析和处理HTML/XML文档,以创建RSS源。

RSS是一种用于发布新闻、博客、多媒体等内容的XML格式。它可以被其他网站或应用程序订阅,以获取最新的内容更新。因此,创建一个RSS源对于网站的宣传和内容传播非常重要。

首先,我们需要一个包含文章或者新闻发布的HTML或XML文档。假设我们的文章存储在一个HTML文件中,如下所示:




    我的网站


    

最新文章

我们可以使用PHP的SimpleXML扩展来解析和处理XML文档,或者使用PHP的DOM扩展来解析和处理HTML文档。在本示例中,我们将使用DOM扩展来解析HTML文档。

首先,我们需要将HTML文档加载到DOM对象中。可以使用DOMDocument类的loadHTMLFile方法来实现:

$dom = new DOMDocument();
$dom->loadHTMLFile('index.html');

接下来,我们可以使用DOM对象的方法来获取HTML文档中的元素。例如,我们可以获取所有标签的文本内容和链接地址:

$links = $dom->getElementsByTagName('a');
foreach ($links as $link) {
    $title = $link->textContent;
    $url = $link->getAttribute('href');
    // 将$title和$url存入RSS源
}

在上述示例中,我们遍历所有的标签,并使用textContent方法获取标签内的文本内容,使用getAttribute方法获取链接地址。接下来,我们可以将获取到的标题和链接地址存入RSS源。

最后,我们需要将RSS源输出为一个XML文档。我们可以使用DOMDocument类的方法来创建XML节点,如下所示:

$rss = new DOMDocument('1.0', 'UTF-8');
$rss->formatOutput = true;

$feed = $rss->createElement('rss');
$feed->setAttribute('version', '2.0');

$channel = $rss->createElement('channel');
$feed->appendChild($channel);

$title = $rss->createElement('title', '我的网站');
$channel->appendChild($title);

// 将存入的标题和链接地址转换为XML格式并添加到$channel节点中

$rss->appendChild($feed);

echo $rss->saveXML();

在上述示例中,我们创建了一个根节点,设置了版本属性为2.0。然后创建了节点和一个标题节点</code>,并将它们添加到根节点中。在上面的示例中,我们没有完整的展示将所有标题和链接地址转换为XML格式的代码,但你可以使用类似的方式来完成。</p><p>最后,我们使用<code>saveXML</code>方法将RSS源输出为一个XML文档,并通过<code>echo</code>语句将其发送到客户端。</p><p>综上所述,本文演示了如何使用PHP解析和处理HTML/XML文档,以创建RSS源。通过解析HTML/XML文档,我们可以获取到内容的标题和链接地址,并将其存入RSS源中。最后,我们将RSS源输出为一个XML文档,以供其他网站或应用程序订阅和获取最新的内容更新。</p><p>以上就是《PHP中解析和处理HTML/XML以创建RSS源的示例》的详细内容,更多关于PHP解析HTML/XML RSS源的资料请关注golang学习网公众号!</p> </div> <div class="labsList"> <a href="javascript:;" title="PHP解析HTML/XML RSS源">PHP解析HTML/XML RSS源</a> </div> <div class="cateBox"> <div class="cateItem"> <a href="/article/65084.html" title="如何使用Java技术实现高性能数据库搜索策略?" class="img_box"> <img src="/uploads/651/0bccfa62ad6829b1f7fc0c586b57a6c7.png" onerror="this.onerror='',this.src='/assets/images/moren/morentu.png'" alt="如何使用Java技术实现高性能数据库搜索策略?">如何使用Java技术实现高性能数据库搜索策略? </a> <dl> <dt class="lineOverflow"><a href="/article/65084.html" title="如何使用Java技术实现高性能数据库搜索策略?" class="aBlack">上一篇<i></i></a></dt> <dd class="lineTwoOverflow">如何使用Java技术实现高性能数据库搜索策略?</dd> </dl> </div> <div class="cateItem"> <a href="/article/65086.html" title="如何用Python编写支持向量机算法?" class="img_box"> <img src="/uploads/651/4b232529cc77b72de37d26b5b94ba42e.png" onerror="this.onerror='',this.src='/assets/images/moren/morentu.png'" alt="如何用Python编写支持向量机算法?"> </a> <dl> <dt class="lineOverflow"><a href="/article/65086.html" class="aBlack" title="如何用Python编写支持向量机算法?">下一篇<i></i></a></dt> <dd class="lineTwoOverflow">如何用Python编写支持向量机算法?</dd> </dl> </div> </div> </div> </div> <div class="leftContBox pt0"> <div class="pdl20"> <div class="contTit"> <a href="/articlelist.html" class="more" title="查看更多">查看更多<i class="iconfont"></i></a> <div class="tit">最新文章</div> </div> </div> <ul class="newArticleList"> <li> <div class="contBox"> <a href="/article/622395.html" class="img_box" title="PHP ini_parse_quantity 怎么校验配置容量:单位换算、溢出边界与运行时验收"> <img src="/uploads/20260826/1787742696-ini-quantity-parse-flow.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="PHP ini_parse_quantity 怎么校验配置容量:单位换算、溢出边界与运行时验收"> </a> <dl> <dd class="cont1"> <span> <a href="/articlelist/19_new_0_1.html" class="aLightGray" title="文章">文章</a> · <a href="/articlelist/84_new_0_1.html" class="aLightGray" title="php教程">php教程</a>   |  22分钟前  |   <a href="/articletag/361_new_0_1.html" class="aLightGray" title="配置">配置</a> · <a href="/articletag/1433_new_0_1.html" class="aLightGray" title="PHP">PHP</a> · <a href="/articletag/39880_new_0_1.html" class="aLightGray" title="运行时">运行时</a> · <a href="/articletag/41145_new_0_1.html" class="aLightGray" title="容量校验">容量校验</a> · <a href="javascript:;" class="aLightGray" title="PHP ini_parse_quantity">PHP ini_parse_quantity</a> <a href="javascript:;" class="aLightGray" title="PHP配置容量">PHP配置容量</a> <a href="javascript:;" class="aLightGray" title="ini单位换算">ini单位换算</a> <a href="javascript:;" class="aLightGray" title="PHP运行时校验">PHP运行时校验</a> </span> </dd> <dt class="lineOverflow"> <a href="/article/622395.html" class="aBlack" target="_blank" title="PHP ini_parse_quantity 怎么校验配置容量:单位换算、溢出边界与运行时验收">PHP ini_parse_quantity 怎么校验配置容量:单位换算、溢出边界与运行时验收</a> </dt> <dd class="cont2"> <span><i class="view"></i>163浏览</span> <span class="collectBtn user_collection" data-id="622395" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/622383.html" class="img_box" title="PHP ReflectionAttribute 怎么读取重复属性:getAttributes、实例化与参数校验"> <img src="/uploads/20260826/1787738524-reflectionattribute-description.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="PHP ReflectionAttribute 怎么读取重复属性:getAttributes、实例化与参数校验"> </a> <dl> <dd class="cont1"> <span> <a href="/articlelist/19_new_0_1.html" class="aLightGray" title="文章">文章</a> · <a href="/articlelist/84_new_0_1.html" class="aLightGray" title="php教程">php教程</a>   |  1小时前  |   <a href="/articletag/5618_new_0_1.html" class="aLightGray" title="reflection">reflection</a> · <a href="/articletag/39782_new_0_1.html" class="aLightGray" title="php教程">php教程</a> · <a href="/articletag/41134_new_0_1.html" class="aLightGray" title="PHP属性">PHP属性</a> · <a href="/articletag/41135_new_0_1.html" class="aLightGray" title="运行时元数据">运行时元数据</a> · <a href="javascript:;" class="aLightGray" title="php">php</a> <a href="javascript:;" class="aLightGray" title="ReflectionAttribute">ReflectionAttribute</a> <a href="javascript:;" class="aLightGray" title="getAttributes">getAttributes</a> <a href="javascript:;" class="aLightGray" title="newInstance">newInstance</a> <a href="javascript:;" class="aLightGray" title="IS_REPEATABLE">IS_REPEATABLE</a> <a href="javascript:;" class="aLightGray" title="PHP属性">PHP属性</a> </span> </dd> <dt class="lineOverflow"> <a href="/article/622383.html" class="aBlack" target="_blank" title="PHP ReflectionAttribute 怎么读取重复属性:getAttributes、实例化与参数校验">PHP ReflectionAttribute 怎么读取重复属性:getAttributes、实例化与参数校验</a> </dt> <dd class="cont2"> <span><i class="view"></i>235浏览</span> <span class="collectBtn user_collection" data-id="622383" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/622357.html" class="img_box" title="PHP SplObjectStorage 删除对象为什么要先判断存在:对象身份、detach 与遍历安全"> <img src="/uploads/20260826/1787729943-php-splobjectstorage-deferred-delete.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="PHP SplObjectStorage 删除对象为什么要先判断存在:对象身份、detach 与遍历安全"> </a> <dl> <dd class="cont1"> <span> <a href="/articlelist/19_new_0_1.html" class="aLightGray" title="文章">文章</a> · <a href="/articlelist/84_new_0_1.html" class="aLightGray" title="php教程">php教程</a>   |  3小时前  |   <a href="/articletag/15232_new_0_1.html" class="aLightGray" title="SPL">SPL</a> · <a href="/articletag/39782_new_0_1.html" class="aLightGray" title="php教程">php教程</a> · <a href="/articletag/40525_new_0_1.html" class="aLightGray" title="异常排查">异常排查</a> · <a href="/articletag/41127_new_0_1.html" class="aLightGray" title="对象管理">对象管理</a> · <a href="/articletag/41128_new_0_1.html" class="aLightGray" title="内存安全">内存安全</a> · <a href="javascript:;" class="aLightGray" title="php">php</a> <a href="javascript:;" class="aLightGray" title="contains">contains</a> <a href="javascript:;" class="aLightGray" title="SplObjectStorage">SplObjectStorage</a> <a href="javascript:;" class="aLightGray" title="detach">detach</a> <a href="javascript:;" class="aLightGray" title="对象集合">对象集合</a> </span> </dd> <dt class="lineOverflow"> <a href="/article/622357.html" class="aBlack" target="_blank" title="PHP SplObjectStorage 删除对象为什么要先判断存在:对象身份、detach 与遍历安全">PHP SplObjectStorage 删除对象为什么要先判断存在:对象身份、detach 与遍历安全</a> </dt> <dd class="cont2"> <span><i class="view"></i>270浏览</span> <span class="collectBtn user_collection" data-id="622357" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/622313.html" class="img_box" title="PHP stream_select 怎么避免空转:读写集合、超时返回值与非阻塞循环"> <img src="/uploads/20260826/1787721325-stream-select-eof-write.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="PHP stream_select 怎么避免空转:读写集合、超时返回值与非阻塞循环"> </a> <dl> <dd class="cont1"> <span> <a href="/articlelist/19_new_0_1.html" class="aLightGray" title="文章">文章</a> · <a href="/articlelist/84_new_0_1.html" class="aLightGray" title="php教程">php教程</a>   |  6小时前  |   </span> </dd> <dt class="lineOverflow"> <a href="/article/622313.html" class="aBlack" target="_blank" title="PHP stream_select 怎么避免空转:读写集合、超时返回值与非阻塞循环">PHP stream_select 怎么避免空转:读写集合、超时返回值与非阻塞循环</a> </dt> <dd class="cont2"> <span><i class="view"></i>128浏览</span> <span class="collectBtn user_collection" data-id="622313" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/622290.html" class="img_box" title="PHP ReflectionProperty::isVirtual 怎么识别属性钩子:可见性、默认值与反射兼容"> <img src="/uploads/20260826/1787716932-php-reflection-hook-storage.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="PHP ReflectionProperty::isVirtual 怎么识别属性钩子:可见性、默认值与反射兼容"> </a> <dl> <dd class="cont1"> <span> <a href="/articlelist/19_new_0_1.html" class="aLightGray" title="文章">文章</a> · <a href="/articlelist/84_new_0_1.html" class="aLightGray" title="php教程">php教程</a>   |  7小时前  |   <a href="/articletag/18_new_0_1.html" class="aLightGray" title="反射">反射</a> · <a href="/articletag/1433_new_0_1.html" class="aLightGray" title="PHP">PHP</a> · <a href="/articletag/40308_new_0_1.html" class="aLightGray" title="PHP 8.4">PHP 8.4</a> · <a href="/articletag/41104_new_0_1.html" class="aLightGray" title="ReflectionProperty">ReflectionProperty</a> · <a href="/articletag/41105_new_0_1.html" class="aLightGray" title="属性钩子">属性钩子</a> · <a href="javascript:;" class="aLightGray" title="反射">反射</a> <a href="javascript:;" class="aLightGray" title="属性钩子">属性钩子</a> <a href="javascript:;" class="aLightGray" title="PHP 8.4">PHP 8.4</a> <a href="javascript:;" class="aLightGray" title="ReflectionProperty::isVirtual">ReflectionProperty::isVirtual</a> <a href="javascript:;" class="aLightGray" title="虚拟属性">虚拟属性</a> </span> </dd> <dt class="lineOverflow"> <a href="/article/622290.html" class="aBlack" target="_blank" title="PHP ReflectionProperty::isVirtual 怎么识别属性钩子:可见性、默认值与反射兼容">PHP ReflectionProperty::isVirtual 怎么识别属性钩子:可见性、默认值与反射兼容</a> </dt> <dd class="cont2"> <span><i class="view"></i>438浏览</span> <span class="collectBtn user_collection" data-id="622290" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/622277.html" class="img_box" title="PHP 8.2 BackedEnum 如何接收表单值:tryFrom、校验与默认分支"> <img src="/uploads/20260826/1787713634-php-backed-enum-branches.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="PHP 8.2 BackedEnum 如何接收表单值:tryFrom、校验与默认分支"> </a> <dl> <dd class="cont1"> <span> <a href="/articlelist/19_new_0_1.html" class="aLightGray" title="文章">文章</a> · <a href="/articlelist/84_new_0_1.html" class="aLightGray" title="php教程">php教程</a>   |  8小时前  |   <a href="/articletag/449_new_0_1.html" class="aLightGray" title="枚举">枚举</a> · <a href="/articletag/1433_new_0_1.html" class="aLightGray" title="PHP">PHP</a> · <a href="/articletag/39796_new_0_1.html" class="aLightGray" title="表单">表单</a> · <a href="/articletag/40467_new_0_1.html" class="aLightGray" title="输入校验">输入校验</a> · <a href="javascript:;" class="aLightGray" title="php">php</a> <a href="javascript:;" class="aLightGray" title="表单校验">表单校验</a> <a href="javascript:;" class="aLightGray" title="tryFrom">tryFrom</a> <a href="javascript:;" class="aLightGray" title="PHP 8.2">PHP 8.2</a> <a href="javascript:;" class="aLightGray" title="BackedEnum">BackedEnum</a> </span> </dd> <dt class="lineOverflow"> <a href="/article/622277.html" class="aBlack" target="_blank" title="PHP 8.2 BackedEnum 如何接收表单值:tryFrom、校验与默认分支">PHP 8.2 BackedEnum 如何接收表单值:tryFrom、校验与默认分支</a> </dt> <dd class="cont2"> <span><i class="view"></i>372浏览</span> <span class="collectBtn user_collection" data-id="622277" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/622230.html" class="img_box" title="PHP stream_filter_append 处理大文件换行:过滤器链、资源关闭与内存检查"> <img src="/uploads/20260826/1787703990-php-stream-filter-chain.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="PHP stream_filter_append 处理大文件换行:过滤器链、资源关闭与内存检查"> </a> <dl> <dd class="cont1"> <span> <a href="/articlelist/19_new_0_1.html" class="aLightGray" title="文章">文章</a> · <a href="/articlelist/84_new_0_1.html" class="aLightGray" title="php教程">php教程</a>   |  11小时前  |   <a href="/articletag/16_new_0_1.html" class="aLightGray" title="文件处理">文件处理</a> · <a href="/articletag/1433_new_0_1.html" class="aLightGray" title="PHP">PHP</a> · <a href="/articletag/39721_new_0_1.html" class="aLightGray" title="性能排查">性能排查</a> · <a href="javascript:;" class="aLightGray" title="php">php</a> <a href="javascript:;" class="aLightGray" title="大文件">大文件</a> <a href="javascript:;" class="aLightGray" title="过滤器">过滤器</a> <a href="javascript:;" class="aLightGray" title="stream_filter_append">stream_filter_append</a> </span> </dd> <dt class="lineOverflow"> <a href="/article/622230.html" class="aBlack" target="_blank" title="PHP stream_filter_append 处理大文件换行:过滤器链、资源关闭与内存检查">PHP stream_filter_append 处理大文件换行:过滤器链、资源关闭与内存检查</a> </dt> <dd class="cont2"> <span><i class="view"></i>134浏览</span> <span class="collectBtn user_collection" data-id="622230" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/622154.html" class="img_box" title="PHP session.lazy_write 为什么让会话数据看似没落盘:保存路径、并发与验证"> <img src="/uploads/20260826/1787686645-php-session-lazy-write-path.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="PHP session.lazy_write 为什么让会话数据看似没落盘:保存路径、并发与验证"> </a> <dl> <dd class="cont1"> <span> <a href="/articlelist/19_new_0_1.html" class="aLightGray" title="文章">文章</a> · <a href="/articlelist/84_new_0_1.html" class="aLightGray" title="php教程">php教程</a>   |  15小时前  |   <a href="/articletag/1433_new_0_1.html" class="aLightGray" title="PHP">PHP</a> · <a href="/articletag/1650_new_0_1.html" class="aLightGray" title="并发控制">并发控制</a> · <a href="/articletag/39820_new_0_1.html" class="aLightGray" title="线上排查">线上排查</a> · <a href="/articletag/40255_new_0_1.html" class="aLightGray" title="会话管理">会话管理</a> · <a href="/articletag/41061_new_0_1.html" class="aLightGray" title="配置验收">配置验收</a> · <a href="javascript:;" class="aLightGray" title="php">php</a> <a href="javascript:;" class="aLightGray" title="session.save_path">session.save_path</a> <a href="javascript:;" class="aLightGray" title="PHP会话">PHP会话</a> <a href="javascript:;" class="aLightGray" title="session_write_close">session_write_close</a> <a href="javascript:;" class="aLightGray" title="session.lazy_write">session.lazy_write</a> </span> </dd> <dt class="lineOverflow"> <a href="/article/622154.html" class="aBlack" target="_blank" title="PHP session.lazy_write 为什么让会话数据看似没落盘:保存路径、并发与验证">PHP session.lazy_write 为什么让会话数据看似没落盘:保存路径、并发与验证</a> </dt> <dd class="cont2"> <span><i class="view"></i>469浏览</span> <span class="collectBtn user_collection" data-id="622154" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/622118.html" class="img_box" title="PHP 反射读取联合类型怎么做运行时校验:ReflectionType 与可空参数的判断顺序"> <img src="/uploads/20260826/1787673683-reflection-type-tree.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="PHP 反射读取联合类型怎么做运行时校验:ReflectionType 与可空参数的判断顺序"> </a> <dl> <dd class="cont1"> <span> <a href="/articlelist/19_new_0_1.html" class="aLightGray" title="文章">文章</a> · <a href="/articlelist/84_new_0_1.html" class="aLightGray" title="php教程">php教程</a>   |  19小时前  |   <a href="/articletag/18_new_0_1.html" class="aLightGray" title="反射">反射</a> · <a href="/articletag/1433_new_0_1.html" class="aLightGray" title="PHP">PHP</a> · <a href="/articletag/41036_new_0_1.html" class="aLightGray" title="类型校验">类型校验</a> · <a href="javascript:;" class="aLightGray" title="联合类型">联合类型</a> <a href="javascript:;" class="aLightGray" title="PHP反射">PHP反射</a> <a href="javascript:;" class="aLightGray" title="ReflectionType">ReflectionType</a> <a href="javascript:;" class="aLightGray" title="运行时校验">运行时校验</a> </span> </dd> <dt class="lineOverflow"> <a href="/article/622118.html" class="aBlack" target="_blank" title="PHP 反射读取联合类型怎么做运行时校验:ReflectionType 与可空参数的判断顺序">PHP 反射读取联合类型怎么做运行时校验:ReflectionType 与可空参数的判断顺序</a> </dt> <dd class="cont2"> <span><i class="view"></i>346浏览</span> <span class="collectBtn user_collection" data-id="622118" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/622070.html" class="img_box" title="PHP ReflectionClass 怎么筛选重复注解:继承、目标类与参数验收"> <img src="/uploads/20260825/1787659742-php-reflection-filter-chain.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="PHP ReflectionClass 怎么筛选重复注解:继承、目标类与参数验收"> </a> <dl> <dd class="cont1"> <span> <a href="/articlelist/19_new_0_1.html" class="aLightGray" title="文章">文章</a> · <a href="/articlelist/84_new_0_1.html" class="aLightGray" title="php教程">php教程</a>   |  23小时前  |   <a href="/articletag/18_new_0_1.html" class="aLightGray" title="反射">反射</a> · <a href="/articletag/13076_new_0_1.html" class="aLightGray" title="attribute">attribute</a> · <a href="/articletag/39782_new_0_1.html" class="aLightGray" title="php教程">php教程</a> · <a href="/articletag/40426_new_0_1.html" class="aLightGray" title="PHP 8">PHP 8</a> · <a href="/articletag/41010_new_0_1.html" class="aLightGray" title="代码验收">代码验收</a> · <a href="javascript:;" class="aLightGray" title="php">php</a> <a href="javascript:;" class="aLightGray" title="ReflectionClass">ReflectionClass</a> <a href="javascript:;" class="aLightGray" title="Attribute">Attribute</a> <a href="javascript:;" class="aLightGray" title="ReflectionAttribute">ReflectionAttribute</a> <a href="javascript:;" class="aLightGray" title="getAttributes">getAttributes</a> <a href="javascript:;" class="aLightGray" title="isRepeated">isRepeated</a> </span> </dd> <dt class="lineOverflow"> <a href="/article/622070.html" class="aBlack" target="_blank" title="PHP ReflectionClass 怎么筛选重复注解:继承、目标类与参数验收">PHP ReflectionClass 怎么筛选重复注解:继承、目标类与参数验收</a> </dt> <dd class="cont2"> <span><i class="view"></i>134浏览</span> <span class="collectBtn user_collection" data-id="622070" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/622062.html" class="img_box" title="PHP PDO fetchColumn 为什么会把 0 和无结果混在一起:NULL、false 与行存在性验收"> <img src="/uploads/20260825/1787657280-php-pdo-fetchcolumn-boundaries.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="PHP PDO fetchColumn 为什么会把 0 和无结果混在一起:NULL、false 与行存在性验收"> </a> <dl> <dd class="cont1"> <span> <a href="/articlelist/19_new_0_1.html" class="aLightGray" title="文章">文章</a> · <a href="/articlelist/84_new_0_1.html" class="aLightGray" title="php教程">php教程</a>   |  1天前  |   <a href="/articletag/667_new_0_1.html" class="aLightGray" title="数据库">数据库</a> · <a href="/articletag/1389_new_0_1.html" class="aLightGray" title="返回值">返回值</a> · <a href="/articletag/1433_new_0_1.html" class="aLightGray" title="PHP">PHP</a> · <a href="/articletag/4974_new_0_1.html" class="aLightGray" title="pdo">pdo</a> · <a href="/articletag/41006_new_0_1.html" class="aLightGray" title="调试验收">调试验收</a> · <a href="javascript:;" class="aLightGray" title="php">php</a> <a href="javascript:;" class="aLightGray" title="pdo">pdo</a> <a href="javascript:;" class="aLightGray" title="数据库查询">数据库查询</a> <a href="javascript:;" class="aLightGray" title="fetchColumn">fetchColumn</a> <a href="javascript:;" class="aLightGray" title="无结果">无结果</a> </span> </dd> <dt class="lineOverflow"> <a href="/article/622062.html" class="aBlack" target="_blank" title="PHP PDO fetchColumn 为什么会把 0 和无结果混在一起:NULL、false 与行存在性验收">PHP PDO fetchColumn 为什么会把 0 和无结果混在一起:NULL、false 与行存在性验收</a> </dt> <dd class="cont2"> <span><i class="view"></i>147浏览</span> <span class="collectBtn user_collection" data-id="622062" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/622053.html" class="img_box" title="PHP SPLFixedArray 适合做批处理缓存吗:顺序读取、内存观测与数组替代边界"> <img src="/uploads/20260825/1787652290-splfixedarray-choice-boundaries.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="PHP SPLFixedArray 适合做批处理缓存吗:顺序读取、内存观测与数组替代边界"> </a> <dl> <dd class="cont1"> <span> <a href="/articlelist/19_new_0_1.html" class="aLightGray" title="文章">文章</a> · <a href="/articlelist/84_new_0_1.html" class="aLightGray" title="php教程">php教程</a>   |  1天前  |   <a href="/articletag/146_new_0_1.html" class="aLightGray" title="数据结构">数据结构</a> · <a href="/articletag/861_new_0_1.html" class="aLightGray" title="性能">性能</a> · <a href="/articletag/1433_new_0_1.html" class="aLightGray" title="PHP">PHP</a> · <a href="/articletag/40210_new_0_1.html" class="aLightGray" title="批处理">批处理</a> · <a href="/articletag/41000_new_0_1.html" class="aLightGray" title="SplFixedArray">SplFixedArray</a> · <a href="javascript:;" class="aLightGray" title="php">php</a> <a href="javascript:;" class="aLightGray" title="SplFixedArray">SplFixedArray</a> <a href="javascript:;" class="aLightGray" title="批处理缓存">批处理缓存</a> <a href="javascript:;" class="aLightGray" title="内存观测">内存观测</a> <a href="javascript:;" class="aLightGray" title="数组对比">数组对比</a> </span> </dd> <dt class="lineOverflow"> <a href="/article/622053.html" class="aBlack" target="_blank" title="PHP SPLFixedArray 适合做批处理缓存吗:顺序读取、内存观测与数组替代边界">PHP SPLFixedArray 适合做批处理缓存吗:顺序读取、内存观测与数组替代边界</a> </dt> <dd class="cont2"> <span><i class="view"></i>477浏览</span> <span class="collectBtn user_collection" data-id="622053" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> </ul> </div> </div> <div class="mainRight"> <!-- 右侧广告位banner --> <div class="rightContBox" style="margin-top: 0px;"> <div class="rightTit"> <a href="/courselist.html" class="more" title="查看更多">查看更多<i class="iconfont"></i></a> <div class="tit lineOverflow">课程推荐</div> </div> <ul class="lessonRecomRList"> <li> <a href="/course/9.html" class="img_box" target="_blank" title="前端进阶之JavaScript设计模式"> <img src="/uploads/20221222/52fd0f23a454c71029c2c72d206ed815.jpg" onerror="this.onerror='',this.src='/assets/images/moren/morentu.png'" alt="前端进阶之JavaScript设计模式"> </a> <dl> <dt class="lineTwoOverflow"><a href="/course/9.html" target="_blank" class="aBlack" title="前端进阶之JavaScript设计模式">前端进阶之JavaScript设计模式</a></dt> <dd class="cont1 lineTwoOverflow"> 设计模式是开发人员在软件开发过程中面临一般问题时的解决方案,代表了最佳的实践。本课程的主打内容包括JS常见设计模式以及具体应用场景,打造一站式知识长龙服务,适合有JS基础的同学学习。 </dd> <dd class="cont2">543次学习</dd> </dl> </li> <li> <a href="/course/2.html" class="img_box" target="_blank" title="GO语言核心编程课程"> <img src="/uploads/20221221/634ad7404159bfefc6a54a564d437b5f.png" onerror="this.onerror='',this.src='/assets/images/moren/morentu.png'" alt="GO语言核心编程课程"> </a> <dl> <dt class="lineTwoOverflow"><a href="/course/2.html" target="_blank" class="aBlack" title="GO语言核心编程课程">GO语言核心编程课程</a></dt> <dd class="cont1 lineTwoOverflow"> 本课程采用真实案例,全面具体可落地,从理论到实践,一步一步将GO核心编程技术、编程思想、底层实现融会贯通,使学习者贴近时代脉搏,做IT互联网时代的弄潮儿。 </dd> <dd class="cont2">516次学习</dd> </dl> </li> <li> <a href="/course/74.html" class="img_box" target="_blank" title="简单聊聊mysql8与网络通信"> <img src="/uploads/20240103/bad35fe14edbd214bee16f88343ac57c.png" onerror="this.onerror='',this.src='/assets/images/moren/morentu.png'" alt="简单聊聊mysql8与网络通信"> </a> <dl> <dt class="lineTwoOverflow"><a href="/course/74.html" target="_blank" class="aBlack" title="简单聊聊mysql8与网络通信">简单聊聊mysql8与网络通信</a></dt> <dd class="cont1 lineTwoOverflow"> 如有问题加微信:Le-studyg;在课程中,我们将首先介绍MySQL8的新特性,包括性能优化、安全增强、新数据类型等,帮助学生快速熟悉MySQL8的最新功能。接着,我们将深入解析MySQL的网络通信机制,包括协议、连接管理、数据传输等,让 </dd> <dd class="cont2">500次学习</dd> </dl> </li> <li> <a href="/course/57.html" class="img_box" target="_blank" title="JavaScript正则表达式基础与实战"> <img src="/uploads/20221226/bbe4083bb3cb0dd135fb02c31c3785fb.jpg" onerror="this.onerror='',this.src='/assets/images/moren/morentu.png'" alt="JavaScript正则表达式基础与实战"> </a> <dl> <dt class="lineTwoOverflow"><a href="/course/57.html" target="_blank" class="aBlack" title="JavaScript正则表达式基础与实战">JavaScript正则表达式基础与实战</a></dt> <dd class="cont1 lineTwoOverflow"> 在任何一门编程语言中,正则表达式,都是一项重要的知识,它提供了高效的字符串匹配与捕获机制,可以极大的简化程序设计。 </dd> <dd class="cont2">487次学习</dd> </dl> </li> <li> <a href="/course/28.html" class="img_box" target="_blank" title="从零制作响应式网站—Grid布局"> <img src="/uploads/20221223/ac110f88206daeab6c0cf38ebf5fe9ed.jpg" onerror="this.onerror='',this.src='/assets/images/moren/morentu.png'" alt="从零制作响应式网站—Grid布局"> </a> <dl> <dt class="lineTwoOverflow"><a href="/course/28.html" target="_blank" class="aBlack" title="从零制作响应式网站—Grid布局">从零制作响应式网站—Grid布局</a></dt> <dd class="cont1 lineTwoOverflow"> 本系列教程将展示从零制作一个假想的网络科技公司官网,分为导航,轮播,关于我们,成功案例,服务流程,团队介绍,数据部分,公司动态,底部信息等内容区块。网站整体采用CSSGrid布局,支持响应式,有流畅过渡和展现动画。 </dd> <dd class="cont2">485次学习</dd> </dl> </li> </ul> </div> <div class="rightContBox"> <div class="rightTit"> <a href="/ai.html" class="more" title="查看更多">查看更多<i class="iconfont"></i></a> <div class="tit lineOverflow">AI推荐</div> </div> <ul class="lessonRecomRList"> <li> <a href="/ai/13109.html" target="_blank" title="ljg-skills - "Prompt之神"李继刚开源的 AI 技能集" class="img_box"> <img src="/uploads/ai/20260616/ljg-skills-icon-8bbe1468e5.png" onerror="this.onerror='',this.src='/assets/images/moren/morentu.png'" alt="ljg-skills - "Prompt之神"李继刚开源的 AI 技能集" style="object-fit:cover;width:100%;height:100%;"> </a> <dl> <dt class="lineTwoOverflow"><a href="/ai/13109.html" class="aBlack" target="_blank" title="ljg-skills">ljg-skills</a></dt> <dd class="cont1 lineTwoOverflow"> ljg-skills 是李继刚开源的 AI 技能与提示词集合,面向大模型使用者整理了一批可复用的 prompt、角色设定和任务技能模板,适合用于学习提示词设计、搭建个人 AI 工作流和沉淀团队常用智能体能力。 </dd> <dd class="cont2">5289次使用</dd> </dl> </li> <li> <a href="/ai/13108.html" target="_blank" title="MELO音乐 - AI 音乐生成平台,支持多模态创作能力" class="img_box"> <img src="/uploads/ai/20260616/melo-icon-10bf590762.png" onerror="this.onerror='',this.src='/assets/images/moren/morentu.png'" alt="MELO音乐 - AI 音乐生成平台,支持多模态创作能力" style="object-fit:cover;width:100%;height:100%;"> </a> <dl> <dt class="lineTwoOverflow"><a href="/ai/13108.html" class="aBlack" target="_blank" title="MELO音乐">MELO音乐</a></dt> <dd class="cont1 lineTwoOverflow"> MELO音乐是一站式AI视频与音乐制作助手,对标suno, udio的高品质体验。提供伴奏生成、原创写词、无损导出、哼唱识曲、混音变声等全套音频与短视频编辑工具。无论是流行Kpop、电音说唱、民谣古风、摇滚儿歌还是商用轻音乐,MELO为你免费谱曲,轻松做同款! </dd> <dd class="cont2">4799次使用</dd> </dl> </li> <li> <a href="/ai/13107.html" target="_blank" title="UniScribe - AI 免费在线音视频转文字平台" class="img_box"> <img src="/uploads/ai/20260616/uniscribe-icon-3c88366a15.png" onerror="this.onerror='',this.src='/assets/images/moren/morentu.png'" alt="UniScribe - AI 免费在线音视频转文字平台" style="object-fit:cover;width:100%;height:100%;"> </a> <dl> <dt class="lineTwoOverflow"><a href="/ai/13107.html" class="aBlack" target="_blank" title="UniScribe">UniScribe</a></dt> <dd class="cont1 lineTwoOverflow"> UniScribe 是一款 AI 音视频转文字与内容整理工具,支持上传音频、视频文件或粘贴 YouTube 链接,自动生成转写文本、摘要、思维导图和关键问题,并支持多格式导出,适合会议记录、课程学习、访谈整理和内容创作复盘。 </dd> <dd class="cont2">4746次使用</dd> </dl> </li> <li> <a href="/ai/13106.html" target="_blank" title="剧云 - 免费 AI 智能中文剧本创作平台" class="img_box"> <img src="/uploads/ai/20260615/d36c7176-icon-2b0cd581ce.png" onerror="this.onerror='',this.src='/assets/images/moren/morentu.png'" alt="剧云 - 免费 AI 智能中文剧本创作平台" style="object-fit:cover;width:100%;height:100%;"> </a> <dl> <dt class="lineTwoOverflow"><a href="/ai/13106.html" class="aBlack" target="_blank" title="剧云">剧云</a></dt> <dd class="cont1 lineTwoOverflow"> 剧云是专业中文剧本创作平台,安全稳定运行十余年,集成AI编剧、剧本医生审核、人物小传、剧情关系图、大纲编写、多人协作、Word导入导出、版权管控功能,数据安全防护,轻松高效创作剧本。 </dd> <dd class="cont2">5010次使用</dd> </dl> </li> <li> <a href="/ai/13105.html" target="_blank" title="万象有声 - AI 一站式有声内容创作平台" class="img_box"> <img src="/uploads/ai/20260615/50267bac-icon-c146b001b5.png" onerror="this.onerror='',this.src='/assets/images/moren/morentu.png'" alt="万象有声 - AI 一站式有声内容创作平台" style="object-fit:cover;width:100%;height:100%;"> </a> <dl> <dt class="lineTwoOverflow"><a href="/ai/13105.html" class="aBlack" target="_blank" title="万象有声">万象有声</a></dt> <dd class="cont1 lineTwoOverflow"> 万象有声,一个专为有声创作者打造的新一代智能有声内容创作平台。平台提供专业的智能拆章、智能画本编辑、AI配音、AI生成音效、后期制作、智能对轨、智能审听等有声创作全流程工具,可以帮助创作者高效、低成本创作出引人入胜的有声作品。立即体验,让有声书制作更简单! </dd> <dd class="cont2">4952次使用</dd> </dl> </li> </ul> </div> <!-- 相关文章 --> <div class="rightContBox"> <div class="rightTit"> <a href="/articlelist.html" class="more" title="查看更多">查看更多<i class="iconfont"></i></a> <div class="tit lineOverflow">相关文章</div> </div> <ul class="aboutArticleRList"> <li> <dl> <dt class="lineTwoOverflow"><a href="/article/620983.html" class="aBlack" title="PHP 8.5 array_last() 怎么处理空数组:从 null 结果到兼容旧版本的 Polyfill">PHP 8.5 array_last() 怎么处理空数组:从 null 结果到兼容旧版本的 Polyfill</a></dt> <dd> <span class="left">2026-08-16</span> <span class="right">501浏览</span> </dd> </dl> </li> <li> <dl> <dt class="lineTwoOverflow"><a href="/article/616777.html" class="aBlack" title="宝塔配置Ruby环境:RVM+Nginx反代教程">宝塔配置Ruby环境:RVM+Nginx反代教程</a></dt> <dd> <span class="left">2026-05-29</span> <span class="right">501浏览</span> </dd> </dl> </li> <li> <dl> <dt class="lineTwoOverflow"><a href="/article/616127.html" class="aBlack" title="unset函数作用范围详解">unset函数作用范围详解</a></dt> <dd> <span class="left">2026-05-29</span> <span class="right">501浏览</span> </dd> </dl> </li> <li> <dl> <dt class="lineTwoOverflow"><a href="/article/598283.html" class="aBlack" title="VS Code配置Xdebug教程:PHP调试技巧全解析">VS Code配置Xdebug教程:PHP调试技巧全解析</a></dt> <dd> <span class="left">2026-05-13</span> <span class="right">501浏览</span> </dd> </dl> </li> <li> <dl> <dt class="lineTwoOverflow"><a href="/article/591780.html" class="aBlack" title="PHPEnv安装PhpMyAdmin教程详解">PHPEnv安装PhpMyAdmin教程详解</a></dt> <dd> <span class="left">2026-05-07</span> <span class="right">501浏览</span> </dd> </dl> </li> </ul> </div> </div> </div> <div class="footer"> <div class="footerIn"> <div class="footLeft"> <div class="linkBox"> <a href="/about/1.html" target="_blank" class="aBlack" title="关于我们">关于我们</a> <a href="/about/5.html" target="_blank" class="aBlack" title="免责声明">免责声明</a> <a href="#" class="aBlack" title="意见反馈">意见反馈</a> <a href="/about/2.html" class="aBlack" target="_blank" title="联系我们">联系我们</a> <a href="/send.html" class="aBlack" title="广告合作">内容提交</a> <a href="/manual/go/" target="_blank" class="aBlack" title="手册">手册</a> </div> <div class="footTip">Golang学习网:公益在线Go学习平台,帮助Go学习者快速成长!</div> <div class="shareBox"> <span><i class="qq"></i>技术交流群</span> </div> <div class="copyRight"> Copyright 2023 http://www.17golang.com/ All Rights Reserved | <a href="https://beian.miit.gov.cn/" target="_blank" title="备案">湘ICP备19018815号-4</a> </div> </div> <div class="footRight"> <ul class="encodeList"> <li> <div class="encodeImg"> <img src="/assets/examples/qrcode_for_gh.jpg" alt="Golang学习网"> </div> <div class="tit">关注公众号</div> <div class="tip">Golang学习网</div> </li> <div class="clear"></div> </ul> </div> <div class="clear"></div> </div> </div> <!-- 微信登录弹窗 --> <style> .popupBg .n-error{ color: red; } </style> <div class="popupBg"> <div class="loginBoxBox"> <div class="imgbg"> <img src="/assets/images/leftlogo.jpg" alt=""> </div> <!-- 微信登录 --> <div class="loginInfo encodeLogin" style="display: none;"> <div class="closeIcon" onclick="$('.popupBg').hide();"></div> <div class="changeLoginType cursorPointer create_wxqrcode" onclick="$('.loginInfo').hide();$('.passwordLogin').show();"> <div class="tip">密码登录在这里</div> </div> <div class="encodeInfo"> <div class="tit"><i></i> 微信扫码登录或注册</div> <div class="encodeImg"> <span id="wx_login_qrcode"><img src="/assets/examples/code.png" alt="二维码"></span> <!-- <div class="refreshBox"> <p>二维码失效</p> <button type="button" class="create_wxqrcode">刷新1111</button> </div> --> </div> <div class="tip">打开微信扫一扫,快速登录/注册</div> </div> <div class="beforeLoginTip">登录即同意 <a href="#" class="aBlue" title="用户协议">用户协议</a> 和 <a href="#" class="aBlue" title="隐私政策">隐私政策</a></div> </div> <!-- 密码登录 --> <div class="loginInfo passwordLogin"> <div class="closeIcon" onclick="$('.popupBg').hide();"></div> <div class="changeLoginType cursorPointer create_wxqrcode" onclick="$('.loginInfo').hide();$('.encodeLogin').show();"> <div class="tip">微信登录更方便</div> </div> <div class="passwordInfo"> <ul class="logintabs selfTabMenu"> <li class="selfTabItem loginFormLi curr">密码登录</li> <li class="selfTabItem registerFormBox ">注册账号</li> </ul> <div class="selfTabContBox"> <div class="selfTabCont loginFormBox" style="display: block;"> <form name="form" id="login-form" class="form-vertical form" method="POST" action="/index/user/login"> <input type="hidden" name="url" value="//www.17golang.com/article/65085.html"/> <input type="hidden" name="__token__" value="7582c184138439d28dc51634f026a39f" /> <div class="form-group" style="height:70px;"> <input class="form-control" id="account" type="text" name="account" value="" data-rule="required" placeholder="邮箱/用户名" autocomplete="off"> </div> <div class="form-group" style="height:70px;"> <input class="form-control" id="password" type="password" name="password" data-rule="required;password" placeholder="密码" autocomplete="off"> </div> <div class="codeBox" style="height:70px;"> <div class="form-group" style="height:70px; width:205px; float: left;"> <input type="text" name="captcha" class="form-control" placeholder="验证码" data-rule="required;length(4)" /> </div> <span class="input-group-btn" style="padding:0;border:none;"> <img src="/captcha.html" width="100" height="45" onclick="this.src = '/captcha.html?r=' + Math.random();"/> </span> </div> <div class="other"> <a href="#" class="forgetPwd aGray" onclick="$('.loginInfo').hide();$('.passwordForget').show();" title="忘记密码">忘记密码</a> </div> <div class="loginBtn mt25"> <button type="submit">登录</button> </div> </form> </div> <div class="selfTabCont registerFormBox" style="display: none;"> <form name="form1" id="register-form" class="form-vertical form" method="POST" action="/index/user/register"> <input type="hidden" name="invite_user_id" value="0"/> <input type="hidden" name="url" value="//www.17golang.com/article/65085.html"/> <input type="hidden" name="__token__" value="7582c184138439d28dc51634f026a39f" /> <div class="form-group" style="height:70px;"> <input type="text" name="email" id="email2" data-rule="required;email" class="form-control" placeholder="邮箱"> </div> <div class="form-group" style="height:70px;"> <input type="text" id="username" name="username" data-rule="required;username" class="form-control" placeholder="用户名必须3-30个字符"> </div> <div class="form-group" style="height:70px;"> <input type="password" id="password2" name="password" data-rule="required;password" class="form-control" placeholder="密码必须6-30个字符"> </div> <div class="codeBox" style="height:70px;"> <div class="form-group" style="height:70px; width:205px; float: left;"> <input type="text" name="captcha" class="form-control" placeholder="验证码" data-rule="required;length(4)" /> </div> <span class="input-group-btn" style="padding:0;border:none;"> <img src="/captcha.html" width="100" height="45" onclick="this.src = '/captcha.html?r=' + Math.random();"/> </span> </div> <div class="loginBtn"> <button type="submit">注册</button> </div> </form> </div> </div> </div> <div class="beforeLoginTip">登录即同意 <a href="https://www.17golang.com/about/3.html" target="_blank" class="aBlue" title="用户协议">用户协议</a> 和 <a href="https://www.17golang.com/about/4.html" target="_blank" class="aBlue" title="隐私政策">隐私政策</a></div> </div> <!-- 重置密码 --> <div class="loginInfo passwordForget"> <div class="closeIcon" onclick="$('.popupBg').hide();"></div> <div class="returnLogin cursorPointer" onclick="$('.passwordForget').hide();$('.passwordLogin').show();">返回登录</div> <div class="passwordInfo"> <ul class="logintabs selfTabMenu"> <li class="selfTabItem">重置密码</li> </ul> <div class="selfTabContBox"> <div class="selfTabCont"> <form id="resetpwd-form" class="form-horizontal form-layer nice-validator n-default n-bootstrap form" method="POST" action="/api/user/resetpwd.html" novalidate="novalidate"> <div style="height:70px;"> <input type="text" class="form-control" id="email" name="email" value="" placeholder="输入邮箱" aria-invalid="true"> </div> <div class="codeBox" style="height:70px;"> <div class="form-group" style="height:70px; width:205px; float: left;"> <input type="text" name="captcha" class="form-control" placeholder="验证码" /> </div> <span class="input-group-btn" style="padding:0;border:none;"> <a href="javascript:;" class="btn btn-primary btn-captcha cursorPointer" style="background: #2080F8; border-radius: 4px; color: #fff; padding: 12px; position: absolute;" data-url="/api/ems/send.html" data-type="email" data-event="resetpwd">发送验证码</a> </span> </div> <input type="password" class="form-control" id="newpassword" name="newpassword" value="" placeholder="请输入6-18位密码"> <div class="loginBtn mt25"> <button type="submit">重置密码</button> </div> </form> </div> </div> </div> </div> </div> </div> <script src="/assets/js/juejin-theme.js?v=20260613b" defer></script> <script> var _hmt = _hmt || []; (function() { var hm = document.createElement("script"); hm.src = "https://hm.baidu.com/hm.js?e34c3e8ab31ba35d7e1c48ea8d77315f"; var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(hm, s); })(); </script> <script src="/assets/js/frontend/common.js"></script> </body> </html>