0

0

XSLT中的命名空间如何处理?

小老鼠

小老鼠

发布时间:2025-08-23 15:49:01

|

214人浏览过

|

来源于php中文网

原创

XSLT处理命名空间的核心在于通过前缀绑定URI来准确匹配和转换带命名空间的节点,避免名称冲突和匹配失败。必须在xsl:stylesheet中声明所需命名空间,如xmlns:doc="http://example.com/doc",并在XPath和模板中使用前缀进行精确匹配;对于默认命名空间,XSLT 1.0需绑定前缀,而XSLT 2.0+可使用xpath-default-namespace简化处理;为防止无关命名空间污染输出,应使用exclude-result-prefixes排除内部使用的前缀;XSLT 2.0/3.0还引入xsl:namespace等指令增强动态控制能力,提升代码可读性与维护性。

xslt中的命名空间如何处理?

在XSLT中处理命名空间,核心在于理解XML命名空间的本质——它是一种避免元素和属性名称冲突的机制,并在XSLT样式表中通过前缀绑定URI来明确地引用这些命名空间。无论是匹配源文档中的节点,还是构建结果文档中的元素,正确声明和使用命名空间前缀都是不可或缺的。忽视命名空间,轻则导致样式表无法匹配到预期节点,重则输出错误的XML结构,使得后续处理出现问题。

解决方案

处理XSLT中的命名空间,首先要在

xsl:stylesheet
根元素或其他适当的元素上声明所有需要使用的命名空间。这通常通过
xmlns:prefix="namespace-URI"
的形式完成。一旦声明,这个前缀就可以在XPath表达式、模板匹配以及结果树中的字面元素中使用。

例如,如果你的源XML包含一个名为

的元素,其命名空间URI是
http://example.com/doc
,那么你的XSLT样式表需要这样声明:



  
    
    
      <xsl:value-of select="doc:title"/>
    
  

这里,

xmlns:doc="http://example.com/doc"
将前缀
doc
绑定到了特定的URI。在
match="/doc:document"
select="doc:title"
中,我们都使用了这个前缀来精确地指向源文档中属于该命名空间的元素。对于输出结果,如果你希望生成一个带有命名空间的元素,同样需要声明并使用前缀:


  
    
      
    
  

此外,对于XSLT 2.0及更高版本,

xpath-default-namespace
属性可以简化对默认命名空间(即没有前缀的命名空间)的处理,避免为所有XPath表达式手动添加前缀的繁琐。同时,
exclude-result-prefixes
属性则用于防止不必要的命名空间声明出现在最终的输出XML中,保持结果的整洁。

为什么XSLT处理命名空间如此重要?

在我看来,命名空间在XML和XSLT中的存在,就像是编程语言中的模块或包。它不是为了增加复杂性,而是为了解决一个非常实际的问题:名称冲突。想象一下,如果两个不同的XML应用程序都定义了一个名为

</pre>的元素,但它们各自的含义和结构完全不同。当这些XML文档需要合并或在同一个上下文中处理时,如果没有命名空间,系统将无法区分哪个<pre class="brush:php;toolbar:false;"><title></pre>是哪个,从而导致解析错误或数据混淆。</p>
<p>XSLT作为一种转换语言,其核心任务就是识别源文档中的特定节点,并将其转换成目标格式。如果源文档中的元素和属性带有命名空间,那么XSLT样式表在匹配这些节点时,就必须明确地指出它们所属的命名空间。否则,即使元素名称完全匹配,XSLT<a style="color:#f60; text-decoration:underline;" title="处理器" href="https://www.php.cn/zt/16030.html" target="_blank">处理器</a>也会认为它们是不同的东西,从而无法应用正确的转换规则。我曾遇到过这样的情况:一个看似简单的XSLT转换,因为源XML中悄悄引入了一个默认命名空间,导致所有模板都失效,最终花费了不少时间才定位到问题——仅仅是因为XPath表达式没有正确地“看见”那个隐式的命名空间。所以,它不仅关乎正确性,更关乎效率和避免潜在的、难以追踪的bug。</p>
<h3>在XSLT中如何正确声明和使用命名空间前缀?</h3>
<p>正确声明和使用命名空间前缀是XSLT处理命名空间的基础。声明通常发生在<pre class="brush:php;toolbar:false;">xsl:stylesheet</pre>元素上,或者在任何需要该命名空间前缀的子元素上。语法是<pre class="brush:php;toolbar:false;">xmlns:prefix="namespace-URI"</pre>。这里的<pre class="brush:php;toolbar:false;">prefix</pre>是你自定义的短名称,而<pre class="brush:php;toolbar:false;">namespace-URI</pre>是一个唯一的标识符,通常是一个URL,但它不一定指向一个实际存在的网页,只是一个字符串标识。</p>
<p>举个例子,假设你有一个源XML文档,其中包含一些FO(Formatting Objects)元素,这些元素属于<pre class="brush:php;toolbar:false;">http://www.w3.org/1999/XSL/Format</pre>命名空间。你的XSLT样式表可能会这样声明:</p><pre class='brush:xml;toolbar:false;'><xsl:stylesheet version="1.0"
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  xmlns:fo="http://www.w3.org/1999/XSL/Format">

  <xsl:template match="/">
    <fo:root>
      <fo:layout-master-set>
        <fo:simple-page-master master-name="A4" page-height="29.7cm" page-width="21cm"
                               margin-top="2cm" margin-bottom="2cm"
                               margin-left="2.5cm" margin-right="2.5cm">
          <fo:region-body/>
        </fo:simple-page-master>
      </fo:layout-master-set>
      <fo:page-sequence master-reference="A4">
        <fo:flow flow-name="xsl-region-body">
          <fo:block>Hello, FO World!</fo:block>
        </fo:flow>
      </fo:page-sequence>
    </fo:root>
  </xsl:template>

</xsl:stylesheet></pre><p>在这个例子中,<pre class="brush:php;toolbar:false;">xmlns:fo="http://www.w3.org/1999/XSL/Format"</pre>将前缀<pre class="brush:php;toolbar:false;">fo</pre>与FO命名空间URI关联起来。之后,所有像<pre class="brush:php;toolbar:false;"><fo:root></pre>、<pre class="brush:php;toolbar:false;"><fo:block></pre>这样的元素,以及如果FO元素有命名空间限定的属性(虽然FO规范中属性通常不带命名空间),都会通过<pre class="brush:php;toolbar:false;">fo:</pre>前缀来引用。</p>
<p>关键在于,XSLT处理器在解析XPath表达式或字面结果元素时,会查找这些前缀对应的URI。如果源XML中的元素URI与样式表中声明的URI匹配,并且前缀也正确使用,那么匹配就会成功。如果源XML中的元素没有命名空间,那么在XSLT中匹配它时就不需要使用前缀。这听起来有点绕,但实际上,就是保持“同名同姓同住址”的原则。</p>
<h3>处理默认命名空间和无命名空间元素有什么特别之处?</h3>
<p>这确实是XSLT命名空间处理中最容易让人感到困惑的地方之一。理解默认命名空间和无命名空间元素之间的<a style="color:#f60; text-decoration:underline;" title="区别" href="https://www.php.cn/zt/27988.html" target="_blank">区别</a>至关重要。</p>
<p><strong>默认命名空间(Default Namespace)</strong>:
当一个XML元素上声明了<pre class="brush:php;toolbar:false;">xmlns="namespace-URI"</pre>,但没有指定前缀时,这个URI就成为了该元素及其所有未带前缀的子元素的默认命名空间。例如:</p><pre class='brush:xml;toolbar:false;'><root xmlns="http://example.com/default">
  <item>Some data</item>
</root></pre><p>这里的<pre class="brush:php;toolbar:false;"><root></pre>和<pre class="brush:php;toolbar:false;"><item></pre>都属于<pre class="brush:php;toolbar:false;">http://example.com/default</pre>这个命名空间。
然而,在XSLT中,XPath表达式<strong>不能直接使用默认命名空间</strong>。这意味着,即使源XML中的元素没有前缀,你在XPath中匹配它们时,仍然需要为这个默认命名空间绑定一个前缀,并在XPath中使用它。这可能是最反直觉的一点。</p><pre class='brush:xml;toolbar:false;'><xsl:stylesheet version="1.0"
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  xmlns:def="http://example.com/default"> <!-- 为默认命名空间绑定前缀 -->

  <xsl:template match="/def:root/def:item"> <!-- 必须使用前缀 -->
    <output><xsl:value-of select="."/></output>
  </xsl:template>

</xsl:stylesheet></pre><p>如果你使用的是XSLT 2.0或更高版本,可以通过在<pre class="brush:php;toolbar:false;">xsl:stylesheet</pre>元素上设置<pre class="brush:php;toolbar:false;">xpath-default-namespace="http://example.com/default"</pre>来解决这个问题。这样,所有未带前缀的XPath表达式都会自动被解释为属于这个URI的命名空间,大大简化了代码:</p><pre class='brush:xml;toolbar:false;'><xsl:stylesheet version="2.0"
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  xpath-default-namespace="http://example.com/default"> <!-- 2.0+ 特性 -->

  <xsl:template match="/root/item"> <!-- 无需前缀,更自然 -->
    <output><xsl:value-of select="."/></output>
  </xsl:template>

</xsl:stylesheet></pre><p><strong>无命名空间元素(No Namespace Elements)</strong>:
这类元素没有<pre class="brush:php;toolbar:false;">xmlns</pre>声明,也没有前缀。它们通常出现在简单的、不涉及命名空间冲突的XML文档中。</p><pre class='brush:xml;toolbar:false;'><root>
  <item>Some data</item>
</root></pre><p>对于这类元素,XSLT的处理就直观多了:在XPath表达式中,你不需要为它们添加任何前缀。</p><pre class='brush:xml;toolbar:false;'><xsl:stylesheet version="1.0"
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

  <xsl:template match="/root/item"> <!-- 直接匹配,无需前缀 -->
    <output><xsl:value-of select="."/></output>
  </xsl:template>

</xsl:stylesheet></pre><p>我个人觉得,对于XSLT 1.0,处理默认命名空间总是让人头疼,因为它打破了直觉。但一旦你理解了XPath对于默认命名空间的“视而不见”特性,并坚持为所有命名空间(包括源文档的默认命名空间)绑定一个前缀,问题就迎刃而解了。而XSLT 2.0的<pre class="brush:php;toolbar:false;">xpath-default-namespace</pre>真的是一个巨大的福音,让代码变得更清晰。</p><div class="aritcle_card flexRow">
							<div class="artcardd flexRow">
								<a class="aritcle_card_img" href="/xiazai/code/10454" title="通吃客零食网整站 for Shopex"><img
										src="https://img.php.cn/upload/webcode/000/000/020/176216580836240.jpg" alt="通吃客零食网整站 for Shopex"></a>
								<div class="aritcle_card_info flexColumn">
									<a href="/xiazai/code/10454" title="通吃客零食网整站 for Shopex">通吃客零食网整站 for Shopex</a>
									<p>第一步】:将安装包中所有的文件夹和文件用ftp工具以二进制方式上传至服务器空间;(如果您不知如何设置ftp工具的二进制方式,可以查看:(http://www.shopex.cn/support/qa/setup.help.717.html)【第二步】:在浏览器中输入 http://您的商店域名/install 进行安装界面进行安装即可。【第二步】:登录后台,工具箱里恢复数据管理后台是url/sho</p>
								</div>
								<a href="/xiazai/code/10454" title="通吃客零食网整站 for Shopex" class="aritcle_card_btn flexRow flexcenter"><b></b><span>下载</span> </a>
							</div>
						</div>
<h3>如何避免XSLT输出中出现不必要的命名空间声明?</h3>
<p>在XSLT转换过程中,你可能会在样式表里声明许多命名空间前缀,有些是用来匹配源文档的,有些是用来辅助XSLT内部逻辑(比如<pre class="brush:php;toolbar:false;">exslt:node-set</pre>),但它们并不都应该出现在最终的输出XML文档中。如果这些前缀及其URI不加控制地出现在输出中,会导致XML文件变得臃肿,甚至可能与目标系统的解析器产生兼容性问题。</p>
<p>解决这个问题的主要<a style="color:#f60; text-decoration:underline;" title="工具" href="https://www.php.cn/zt/16887.html" target="_blank">工具</a>是<pre class="brush:php;toolbar:false;">exclude-result-prefixes</pre>属性,它可以在<pre class="brush:php;toolbar:false;">xsl:stylesheet</pre>元素或<pre class="brush:php;toolbar:false;">xsl:output</pre>元素上使用。它的作用是告诉XSLT处理器,哪些在样式表中声明的命名空间前缀,不应该被复制到结果树的根元素上作为命名空间声明。</p>
<p>例如,如果你使用了一个EXSLT扩展函数,你可能会这样声明:</p><pre class='brush:xml;toolbar:false;'><xsl:stylesheet version="1.0"
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  xmlns:my="http://example.com/my-namespace"
  xmlns:exsl="http://exslt.org/common"
  exclude-result-prefixes="exsl"> <!-- 告诉处理器不要输出 exsl 命名空间 -->

  <xsl:template match="/">
    <my:root>
      <my:element>
        <xsl:value-of select="exsl:node-set($some-variable)"/>
      </my:element>
    </my:root>
  </xsl:template>

</xsl:stylesheet></pre><p>在这个例子中,<pre class="brush:php;toolbar:false;">exsl</pre>前缀仅用于调用EXSLT的<pre class="brush:php;toolbar:false;">node-set</pre>函数,它不是结果XML结构的一部分。通过在<pre class="brush:php;toolbar:false;">exclude-result-prefixes</pre>中列出<pre class="brush:php;toolbar:false;">exsl</pre>,XSLT处理器就不会在<pre class="brush:php;toolbar:false;"><my:root></pre>或其他结果元素上生成<pre class="brush:php;toolbar:false;">xmlns:exsl="http://exslt.org/common"</pre>这样的声明。</p>
<p>需要注意的是,如果你在结果树中<strong>确实</strong>创建了带有某个前缀的元素(比如上面的<pre class="brush:php;toolbar:false;"><my:root></pre>和<pre class="brush:php;toolbar:false;"><my:element></pre>),那么该前缀对应的命名空间声明是<strong>必须</strong>出现在输出中的,并且不能被<pre class="brush:php;toolbar:false;">exclude-result-prefixes</pre>排除。这个属性只针对那些“仅仅在XSLT内部使用,不构成结果XML结构本身”的命名空间。</p>
<p>还有一个相关的属性是<pre class="brush:php;toolbar:false;">extension-element-prefixes</pre>,它用于标识哪些命名空间前缀是扩展元素(例如,一些处理器提供的非标准XSLT指令)。这些前缀也通常不应该出现在结果文档中,并且它们会被自动地从结果中排除,除非你明确地在<pre class="brush:php;toolbar:false;">exclude-result-prefixes</pre>中列出它们。</p>
<h3>XSLT 2.0/3.0在命名空间处理上有哪些改进?</h3>
<p>XSLT 2.0及后续的3.0版本,在命名空间处理上确实带来了显著的改进,大大提升了开发体验和灵活性,解决了XSLT 1.0中一些令人头疼的问题。</p>
<p>最重要且最常用的改进无疑是前面提到的<strong><pre class="brush:php;toolbar:false;">xpath-default-namespace</pre>属性</strong>。在XSLT 1.0中,处理源文档中的默认命名空间(即没有前缀的命名空间)是一个常见的痛点,你必须为它绑定一个前缀,然后在所有的XPath表达式中都使用这个前缀。这不仅增加了冗余,也使得样式表的可读性变差。XSLT 2.0引入的<pre class="brush:php;toolbar:false;">xpath-default-namespace</pre>属性,允许你在<pre class="brush:php;toolbar:false;">xsl:stylesheet</pre>元素上指定一个URI,这个URI将作为所有未带前缀的XPath表达式的默认命名空间。这让XPath表达式可以更自然地匹配源文档中的默认命名空间元素,大大简化了代码,并且更符合直觉。</p>
<p>例如,如果你有一个包含默认命名空间的XML:</p><pre class='brush:xml;toolbar:false;'><data xmlns="http://example.com/data">
  <item>Value</item>
</data></pre><p>在XSLT 2.0+中,你可以这样处理:</p><pre class='brush:xml;toolbar:false;'><xsl:stylesheet version="2.0"
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  xpath-default-namespace="http://example.com/data">

  <xsl:template match="/data/item">
    <output><xsl:value-of select="."/></output>
  </xsl:template>

</xsl:stylesheet></pre><p>这比XSLT 1.0需要为<pre class="brush:php;toolbar:false;">http://example.com/data</pre>绑定一个前缀,并在<pre class="brush:php;toolbar:false;">match</pre>和<pre class="brush:php;toolbar:false;">select</pre>中都使用它要简洁得多。</p>
<p>除了<pre class="brush:php;toolbar:false;">xpath-default-namespace</pre>,XSLT 2.0/3.0还提供了其他一些细微但有用的特性:</p>
<ul>
<li>
<strong><pre class="brush:php;toolbar:false;">xsl:namespace</pre>指令</strong>:这个指令允许你在结果树中动态地创建命名空间节点。虽然不常用,但在需要根据条件生成命名空间声明的复杂场景下,它提供了更细粒度的控制。</li>
<li>
<strong>更强大的XPath 2.0/3.0</strong>:新的XPath版本本身就对命名空间处理有更好的支持,例如<pre class="brush:php;toolbar:false;">namespace-uri()</pre>和<pre class="brush:php;toolbar:false;">local-name()</pre>函数可以更方便地提取元素和属性的命名空间信息,这在处理泛型XML或进行复杂的命名空间检查时非常有用。</li>
<li>
<strong><pre class="brush:php;toolbar:false;">xsl:mode</pre>中的<pre class="brush:php;toolbar:false;">on-no-match</pre>属性</strong>:虽然不是直接关于命名空间,但它与模板匹配紧密相关。当一个元素没有匹配到任何模板时,这个属性可以定义默认行为,这间接影响到命名空间处理,因为正确的模板匹配往往依赖于正确的命名空间识别。</li>
</ul>
<p>总的来说,XSLT 2.0/3.0在命名空间处理上的改进,特别是<pre class="brush:php;toolbar:false;">xpath-default-namespace</pre>,显著降低了开发难度,提高了样式表的可读性和维护性。对于我个人而言,这使得编写处理复杂XML结构的XSLT变得更加愉快和高效。</p>					</div>
					<div class="artmoreart ">
													<div class="artdp artptit"><span></span>
								<p>相关文章</p>
							</div>
							<div class="artmores flexColumn">
																	<a class="artmrlis flexRow" href="/faq/1890501.html" title="Perl的XML::LibXML模块和XML::Simple哪个好"><b></b>
										<p class="overflowclass">Perl的XML::LibXML模块和XML::Simple哪个好</p>
									</a>
																	<a class="artmrlis flexRow" href="/faq/1890336.html" title="Kotlin怎么解析XML XmlPullParser教程"><b></b>
										<p class="overflowclass">Kotlin怎么解析XML XmlPullParser教程</p>
									</a>
																	<a class="artmrlis flexRow" href="/faq/1889766.html" title="如何在XML中使用条件处理 xsl:if和xsl:choose"><b></b>
										<p class="overflowclass">如何在XML中使用条件处理 xsl:if和xsl:choose</p>
									</a>
																	<a class="artmrlis flexRow" href="/faq/1889747.html" title="Python lxml的iterparse如何处理特定事件"><b></b>
										<p class="overflowclass">Python lxml的iterparse如何处理特定事件</p>
									</a>
																	<a class="artmrlis flexRow" href="/faq/1889583.html" title="XSLT怎么复制XML节点 xsl:copy和xsl:copy-of的区别"><b></b>
										<p class="overflowclass">XSLT怎么复制XML节点 xsl:copy和xsl:copy-of的区别</p>
									</a>
															</div>
													<div class="artmoretabs flexRow">
								<p>相关标签:</p>
								<div class="mtbs flexRow">
									<a class="mtbsa flexRow" onclick="hits_log(2,'www',this);" href-data="/zt/16030.html" target="_blank">处理器</a> <a class="mtbsa flexRow" onclick="hits_log(2,'www',this);" href-data="/zt/16887.html" target="_blank">工具</a> <a class="mtbsa flexRow" onclick="hits_log(2,'www',this);" href-data="/zt/27988.html" target="_blank">区别</a> <a class="mtbsa flexRow" onclick="hits_log(2,'www',this);" href-data="/zt/55554.html" target="_blank">代码可读性</a> <a class="mtbsa flexRow" onclick="hits_log(2,'www',this);" href-data="/zt/92702.html" target="_blank">为什么</a> <a class="mtbsa flexRow" onclick="hits_log(2,'www',this);" href-data="/search?q=命名空间" target="_blank">命名空间</a> <a class="mtbsa flexRow" onclick="hits_log(2,'www',this);" href-data="/search?q=select" target="_blank">select</a> <a class="mtbsa flexRow" onclick="hits_log(2,'www',this);" href-data="/search?q=format" target="_blank">format</a> <a class="mtbsa flexRow" onclick="hits_log(2,'www',this);" href-data="/search?q=xml" target="_blank">xml</a> <a class="mtbsa flexRow" onclick="hits_log(2,'www',this);" href-data="/search?q=标识符" target="_blank">标识符</a> <a class="mtbsa flexRow" onclick="hits_log(2,'www',this);" href-data="/search?q=字符串" target="_blank">字符串</a> <a class="mtbsa flexRow" onclick="hits_log(2,'www',this);" href-data="/search?q=Namespace" target="_blank">Namespace</a> <a class="mtbsa flexRow" onclick="hits_log(2,'www',this);" href-data="/search?q=泛型" target="_blank">泛型</a> <a class="mtbsa flexRow" onclick="hits_log(2,'www',this);" href-data="/search?q=default" target="_blank">default</a> <a class="mtbsa flexRow" onclick="hits_log(2,'www',this);" href-data="/search?q=样式表" target="_blank">样式表</a> <a class="mtbsa flexRow" onclick="hits_log(2,'www',this);" href-data="/search?q=http" target="_blank">http</a> <a class="mtbsa flexRow" onclick="hits_log(2,'www',this);" href-data="/search?q=bug" target="_blank">bug</a>								</div>
							</div>
						
						<p class="statement">本站声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn</p>
						<div class="lastanext flexRow">
													<a class="lastart flexRow" href="/faq/1470489.html" title="XSLT如何设置字符编码输出?"><span>上一篇:</span>XSLT如何设置字符编码输出?</a>
													<a class="nextart flexRow" href="/faq/1470573.html" title="XSLT如何定义命名模板?"><span>下一篇:</span>XSLT如何定义命名模板?</a>
												</div>
					</div>

					<div class="artlef-down ">
													<div class="authormore ">
								<div class="rightdTitle flexRow">
									<div class="title-left flexRow"> <b></b>
										<p>作者最新文章</p>
									</div>
								</div>
																	<div class="authlist flexColumn">
										<div class="autharts flexRow">
											<a class="autharta flexRow " href="/faq/1886853.html" title="币圈十大交易所app下载2025币圈交易所前十汇总"><b></b>
												<p class="overflowclass">币圈十大交易所app下载2025币圈交易所前十汇总</p>
											</a>
											<div class="authtime flexRow"><b></b>
												<p>2025-12-24 13:53</p>
											</div>
										</div>
								</div>
																	<div class="authlist flexColumn">
										<div class="autharts flexRow">
											<a class="autharta flexRow " href="/faq/1886864.html" title="C#怎么使用Lambda表达式 C#匿名函数使用方法"><b></b>
												<p class="overflowclass">C#怎么使用Lambda表达式 C#匿名函数使用方法</p>
											</a>
											<div class="authtime flexRow"><b></b>
												<p>2025-12-24 13:57</p>
											</div>
										</div>
								</div>
																	<div class="authlist flexColumn">
										<div class="autharts flexRow">
											<a class="autharta flexRow " href="/faq/1886866.html" title="ERP系统和CRM系统的区别_ERP与CRM系统功能定位对比分析"><b></b>
												<p class="overflowclass">ERP系统和CRM系统的区别_ERP与CRM系统功能定位对比分析</p>
											</a>
											<div class="authtime flexRow"><b></b>
												<p>2025-12-24 13:57</p>
											</div>
										</div>
								</div>
																	<div class="authlist flexColumn">
										<div class="autharts flexRow">
											<a class="autharta flexRow " href="/faq/1886880.html" title="币圈十大交易所app排行榜(2026年最新排名)"><b></b>
												<p class="overflowclass">币圈十大交易所app排行榜(2026年最新排名)</p>
											</a>
											<div class="authtime flexRow"><b></b>
												<p>2025-12-24 13:59</p>
											</div>
										</div>
								</div>
																	<div class="authlist flexColumn">
										<div class="autharts flexRow">
											<a class="autharta flexRow " href="/faq/1886883.html" title="中通快递手机号查单号 中通快递官方授权查询入口"><b></b>
												<p class="overflowclass">中通快递手机号查单号 中通快递官方授权查询入口</p>
											</a>
											<div class="authtime flexRow"><b></b>
												<p>2025-12-24 14:00</p>
											</div>
										</div>
								</div>
																	<div class="authlist flexColumn">
										<div class="autharts flexRow">
											<a class="autharta flexRow " href="/faq/1886891.html" title="谷歌浏览器打不开网页怎么办,提示“无法访问此网站”的解决方法"><b></b>
												<p class="overflowclass">谷歌浏览器打不开网页怎么办,提示“无法访问此网站”的解决方法</p>
											</a>
											<div class="authtime flexRow"><b></b>
												<p>2025-12-24 14:02</p>
											</div>
										</div>
								</div>
																	<div class="authlist flexColumn">
										<div class="autharts flexRow">
											<a class="autharta flexRow " href="/faq/1886900.html" title="系统镜像ISO哪里下载?纯净版系统镜像下载地址【MSDN】"><b></b>
												<p class="overflowclass">系统镜像ISO哪里下载?纯净版系统镜像下载地址【MSDN】</p>
											</a>
											<div class="authtime flexRow"><b></b>
												<p>2025-12-24 14:03</p>
											</div>
										</div>
								</div>
																	<div class="authlist flexColumn">
										<div class="autharts flexRow">
											<a class="autharta flexRow " href="/faq/1886908.html" title="C#如何将Dictionary序列化为XML"><b></b>
												<p class="overflowclass">C#如何将Dictionary序列化为XML</p>
											</a>
											<div class="authtime flexRow"><b></b>
												<p>2025-12-24 14:06</p>
											</div>
										</div>
								</div>
																	<div class="authlist flexColumn">
										<div class="autharts flexRow">
											<a class="autharta flexRow " href="/faq/1886909.html" title="欧易交易所官网下载v6.151.0欧易交易所最新app下载"><b></b>
												<p class="overflowclass">欧易交易所官网下载v6.151.0欧易交易所最新app下载</p>
											</a>
											<div class="authtime flexRow"><b></b>
												<p>2025-12-24 14:06</p>
											</div>
										</div>
								</div>
																	<div class="authlist flexColumn">
										<div class="autharts flexRow">
											<a class="autharta flexRow " href="/faq/1886910.html" title="C# Avalonia如何加密和解密配置文件 Avalonia数据安全"><b></b>
												<p class="overflowclass">C# Avalonia如何加密和解密配置文件 Avalonia数据安全</p>
											</a>
											<div class="authtime flexRow"><b></b>
												<p>2025-12-24 14:07</p>
											</div>
										</div>
								</div>
															</div>
						
						<div class="moreAi ">
							<div class="rightdTitle flexRow">
								<div class="title-left flexRow"> <b></b>
									<p>热门AI工具</p>
								</div>
								<a target="_blank" class="rititle-more flexRow" href="/ai" title="热门AI工具"><span>更多</span><b></b></a>
							</div>

							<div class="moreailist flexRow">
																	<div class="aidcons flexRow  check ">
										<a target="_blank" href="/ai/723" title="DeepSeek" class="aibtns flexRow">
											<img src="https://img.php.cn/upload/ai_manual/000/000/000/175679963982777.png?x-oss-process=image/resize,m_fill,h_70,w_70" alt="DeepSeek" class="aibtnimg"
												onerror="this.src='/static/lhimages/moren/morentu.png'">
											<div class="aibtn-right flexColumn">
												<p class="overflowclass abripone">DeepSeek</p>
												<p class="overflowclass abriptwo">幻方量化公司旗下的开源大模型平台</p>
																									<div class="aidconstab flexRow">
																												<p href="/ai/tag/code/large-model" title="AI大模型" class="aidcontbp flexRow flexcenter">AI大模型</p>
																													<p href="/ai/tag/code/open-plat" title="开放平台" class="aidcontbp flexRow flexcenter">开放平台</p>
																											</div>
																							</div>
										</a>
									</div>
																	<div class="aidcons flexRow  check ">
										<a target="_blank" href="/ai/726" title="豆包大模型" class="aibtns flexRow">
											<img src="https://img.php.cn/upload/ai_manual/000/000/000/175680204067325.png?x-oss-process=image/resize,m_fill,h_70,w_70" alt="豆包大模型" class="aibtnimg"
												onerror="this.src='/static/lhimages/moren/morentu.png'">
											<div class="aibtn-right flexColumn">
												<p class="overflowclass abripone">豆包大模型</p>
												<p class="overflowclass abriptwo">字节跳动自主研发的一系列大型语言模型</p>
																									<div class="aidconstab flexRow">
																												<p href="/ai/tag/code/large-model" title="AI大模型" class="aidcontbp flexRow flexcenter">AI大模型</p>
																											</div>
																							</div>
										</a>
									</div>
																	<div class="aidcons flexRow  check ">
										<a target="_blank" href="/ai/725" title="通义千问" class="aibtns flexRow">
											<img src="https://img.php.cn/upload/ai_manual/000/000/000/175679974228210.png?x-oss-process=image/resize,m_fill,h_70,w_70" alt="通义千问" class="aibtnimg"
												onerror="this.src='/static/lhimages/moren/morentu.png'">
											<div class="aibtn-right flexColumn">
												<p class="overflowclass abripone">通义千问</p>
												<p class="overflowclass abriptwo">阿里巴巴推出的全能AI助手</p>
																									<div class="aidconstab flexRow">
																												<p href="/ai/tag/code/large-model" title="AI大模型" class="aidcontbp flexRow flexcenter">AI大模型</p>
																											</div>
																							</div>
										</a>
									</div>
																	<div class="aidcons flexRow  check ">
										<a target="_blank" href="/ai/854" title="腾讯元宝" class="aibtns flexRow">
											<img src="https://img.php.cn/upload/ai_manual/000/000/000/175679978251103.png?x-oss-process=image/resize,m_fill,h_70,w_70" alt="腾讯元宝" class="aibtnimg"
												onerror="this.src='/static/lhimages/moren/morentu.png'">
											<div class="aibtn-right flexColumn">
												<p class="overflowclass abripone">腾讯元宝</p>
												<p class="overflowclass abriptwo">腾讯混元平台推出的AI助手</p>
																									<div class="aidconstab flexRow">
																												<p href="/ai/tag/office/docs" title="文档处理" class="aidcontbp flexRow flexcenter">文档处理</p>
																													<p href="/ai/tag/office/excel" title="Excel 表格" class="aidcontbp flexRow flexcenter">Excel 表格</p>
																											</div>
																							</div>
										</a>
									</div>
																	<div class="aidcons flexRow  check ">
										<a target="_blank" href="/ai/724" title="文心一言" class="aibtns flexRow">
											<img src="https://img.php.cn/upload/ai_manual/000/000/000/175679974557049.png?x-oss-process=image/resize,m_fill,h_70,w_70" alt="文心一言" class="aibtnimg"
												onerror="this.src='/static/lhimages/moren/morentu.png'">
											<div class="aibtn-right flexColumn">
												<p class="overflowclass abripone">文心一言</p>
												<p class="overflowclass abriptwo">文心一言是百度开发的AI聊天机器人,通过对话可以生成各种形式的内容。</p>
																									<div class="aidconstab flexRow">
																												<p href="/ai/tag/code/large-model" title="AI大模型" class="aidcontbp flexRow flexcenter">AI大模型</p>
																													<p href="/ai/tag/text/chinese-writing" title="中文写作" class="aidcontbp flexRow flexcenter">中文写作</p>
																											</div>
																							</div>
										</a>
									</div>
																	<div class="aidcons flexRow  check ">
										<a target="_blank" href="/ai/1507" title="讯飞写作" class="aibtns flexRow">
											<img src="https://img.php.cn/upload/ai_manual/000/969/633/68b7a4153cd86671.png?x-oss-process=image/resize,m_fill,h_70,w_70" alt="讯飞写作" class="aibtnimg"
												onerror="this.src='/static/lhimages/moren/morentu.png'">
											<div class="aibtn-right flexColumn">
												<p class="overflowclass abripone">讯飞写作</p>
												<p class="overflowclass abriptwo">基于讯飞星火大模型的AI写作工具,可以快速生成新闻稿件、品宣文案、工作总结、心得体会等各种文文稿</p>
																									<div class="aidconstab flexRow">
																												<p href="/ai/tag/text/chinese-writing" title="中文写作" class="aidcontbp flexRow flexcenter">中文写作</p>
																													<p href="/ai/tag/text/write" title="写作工具" class="aidcontbp flexRow flexcenter">写作工具</p>
																											</div>
																							</div>
										</a>
									</div>
																	<div class="aidcons flexRow  check ">
										<a target="_blank" href="/ai/1115" title="即梦AI" class="aibtns flexRow">
											<img src="https://img.php.cn/upload/ai_manual/001/246/273/68b6d8f7c530c315.png?x-oss-process=image/resize,m_fill,h_70,w_70" alt="即梦AI" class="aibtnimg"
												onerror="this.src='/static/lhimages/moren/morentu.png'">
											<div class="aibtn-right flexColumn">
												<p class="overflowclass abripone">即梦AI</p>
												<p class="overflowclass abriptwo">一站式AI创作平台,免费AI图片和视频生成。</p>
																									<div class="aidconstab flexRow">
																												<p href="/ai/tag/image/image-titching" title="图片拼接" class="aidcontbp flexRow flexcenter">图片拼接</p>
																													<p href="/ai/tag/image/image-create" title="图画生成" class="aidcontbp flexRow flexcenter">图画生成</p>
																											</div>
																							</div>
										</a>
									</div>
																	<div class="aidcons flexRow  check ">
										<a target="_blank" href="/ai/808" title="ChatGPT" class="aibtns flexRow">
											<img src="https://img.php.cn/upload/ai_manual/000/000/000/175679970194596.png?x-oss-process=image/resize,m_fill,h_70,w_70" alt="ChatGPT" class="aibtnimg"
												onerror="this.src='/static/lhimages/moren/morentu.png'">
											<div class="aibtn-right flexColumn">
												<p class="overflowclass abripone">ChatGPT</p>
												<p class="overflowclass abriptwo">最最强大的AI聊天机器人程序,ChatGPT不单是聊天机器人,还能进行撰写邮件、视频脚本、文案、翻译、代码等任务。</p>
																									<div class="aidconstab flexRow">
																												<p href="/ai/tag/code/large-model" title="AI大模型" class="aidcontbp flexRow flexcenter">AI大模型</p>
																													<p href="/ai/tag/text/chinese-writing" title="中文写作" class="aidcontbp flexRow flexcenter">中文写作</p>
																											</div>
																							</div>
										</a>
									</div>
																	<div class="aidcons flexRow  check ">
										<a target="_blank" href="/ai/821" title="智谱清言 - 免费全能的AI助手" class="aibtns flexRow">
											<img src="https://img.php.cn/upload/ai_manual/000/000/000/175679976181507.png?x-oss-process=image/resize,m_fill,h_70,w_70" alt="智谱清言 - 免费全能的AI助手" class="aibtnimg"
												onerror="this.src='/static/lhimages/moren/morentu.png'">
											<div class="aibtn-right flexColumn">
												<p class="overflowclass abripone">智谱清言 - 免费全能的AI助手</p>
												<p class="overflowclass abriptwo">智谱清言 - 免费全能的AI助手</p>
																									<div class="aidconstab flexRow">
																												<p href="/ai/tag/code/large-model" title="AI大模型" class="aidcontbp flexRow flexcenter">AI大模型</p>
																													<p href="/ai/tag/office/pdf" title="PDF 文档" class="aidcontbp flexRow flexcenter">PDF 文档</p>
																											</div>
																							</div>
										</a>
									</div>
															</div>




						</div>

					</div>


				</div>


			</div>
			<div class="conRight artdtilRight ">
				<div class="artrig-adv ">
                    <script type="text/javascript" src="https://teacher.php.cn/php/MDM3MTk1MGYxYjI5ODJmNTE0ZWVkZTA3NmJhYzhmMjI6Og=="></script>
                </div>
				<div class="hotzt artdtzt">
					<div class="rightdTitle flexRow">
						<div class="title-left flexRow"> <b></b>
							<p>相关专题</p>
						</div>
						<a target="_blank" class="rititle-more flexRow" href="/faq/zt" title="相关专题"><span>更多</span><b></b></a>
					</div>
					<div class="hotztuls flexColumn">
													<div class="hotztlls flexRow">
								<a target="_blank" href="/faq/formatzpython" class="aClass flexRow hotzta" title="format在python中的用法"><img
										src="https://img.php.cn/upload/subject/202307/31/2023073114074433322.jpg?x-oss-process=image/resize,m_fill,h_75,w_120" alt="format在python中的用法" class="hotztaimg"
										onerror="this.src='/static/lhimages/moren/morentu.png'"></a>
								<div class="hotztright flexColumn">
									<a target="_blank" href="/faq/formatzpython" class="aClass flexRow hotztra overflowclass" title="format在python中的用法">format在python中的用法</a>
									<p class="aClass flexRow hotztrp overflowclass">Python中的format是一种字符串格式化方法,用于将变量或值插入到字符串中的占位符位置。通过format方法,我们可以动态地构建字符串,使其包含不同值。php中文网给大家带来了相关的教程以及文章,欢迎大家前来阅读学习。</p>
									<div class="hotztrdown flexRow">
										<div class="htztdsee flexRow"> <b></b>
											<p class="">616</p>
										</div>
										<div class="htztdTime flexRow"> <b></b>
											<p>2023.07.31</p>
										</div>
									</div>
								</div>
							</div>
													<div class="hotztlls flexRow">
								<a target="_blank" href="/faq/pythonzdforma" class="aClass flexRow hotzta" title="python中的format是什么意思"><img
										src="https://img.php.cn/upload/subject/202406/27/2024062716241624492.jpg?x-oss-process=image/resize,m_fill,h_75,w_120" alt="python中的format是什么意思" class="hotztaimg"
										onerror="this.src='/static/lhimages/moren/morentu.png'"></a>
								<div class="hotztright flexColumn">
									<a target="_blank" href="/faq/pythonzdforma" class="aClass flexRow hotztra overflowclass" title="python中的format是什么意思">python中的format是什么意思</a>
									<p class="aClass flexRow hotztrp overflowclass">python中的format是一种字符串格式化方法,用于将变量或值插入到字符串中的占位符位置。通过format方法,我们可以动态地构建字符串,使其包含不同值。本专题为大家提供相关的文章、下载、课程内容,供大家免费下载体验。</p>
									<div class="hotztrdown flexRow">
										<div class="htztdsee flexRow"> <b></b>
											<p class="">425</p>
										</div>
										<div class="htztdTime flexRow"> <b></b>
											<p>2024.06.27</p>
										</div>
									</div>
								</div>
							</div>
													<div class="hotztlls flexRow">
								<a target="_blank" href="/faq/pdfzmzhcxmlgs" class="aClass flexRow hotzta" title="pdf怎么转换成xml格式"><img
										src="https://img.php.cn/upload/subject/202404/01/2024040114325666773.jpg?x-oss-process=image/resize,m_fill,h_75,w_120" alt="pdf怎么转换成xml格式" class="hotztaimg"
										onerror="this.src='/static/lhimages/moren/morentu.png'"></a>
								<div class="hotztright flexColumn">
									<a target="_blank" href="/faq/pdfzmzhcxmlgs" class="aClass flexRow hotztra overflowclass" title="pdf怎么转换成xml格式">pdf怎么转换成xml格式</a>
									<p class="aClass flexRow hotztrp overflowclass">将 pdf 转换为 xml 的方法:1. 使用在线转换器;2. 使用桌面软件(如 adobe acrobat、itext);3. 使用命令行工具(如 pdftoxml)。本专题为大家提供相关的文章、下载、课程内容,供大家免费下载体验。</p>
									<div class="hotztrdown flexRow">
										<div class="htztdsee flexRow"> <b></b>
											<p class="">1839</p>
										</div>
										<div class="htztdTime flexRow"> <b></b>
											<p>2024.04.01</p>
										</div>
									</div>
								</div>
							</div>
													<div class="hotztlls flexRow">
								<a target="_blank" href="/faq/xmlzmbcword" class="aClass flexRow hotzta" title="xml怎么变成word"><img
										src="https://img.php.cn/upload/subject/202408/01/2024080117482029290.jpg?x-oss-process=image/resize,m_fill,h_75,w_120" alt="xml怎么变成word" class="hotztaimg"
										onerror="this.src='/static/lhimages/moren/morentu.png'"></a>
								<div class="hotztright flexColumn">
									<a target="_blank" href="/faq/xmlzmbcword" class="aClass flexRow hotztra overflowclass" title="xml怎么变成word">xml怎么变成word</a>
									<p class="aClass flexRow hotztrp overflowclass">步骤:1. 导入 xml 文件;2. 选择 xml 结构;3. 映射 xml 元素到 word 元素;4. 生成 word 文档。提示:确保 xml 文件结构良好,并预览 word 文档以验证转换是否成功。想了解更多xml的相关内容,可以阅读本专题下面的文章。</p>
									<div class="hotztrdown flexRow">
										<div class="htztdsee flexRow"> <b></b>
											<p class="">2078</p>
										</div>
										<div class="htztdTime flexRow"> <b></b>
											<p>2024.08.01</p>
										</div>
									</div>
								</div>
							</div>
													<div class="hotztlls flexRow">
								<a target="_blank" href="/faq/xmlssmgsdwj" class="aClass flexRow hotzta" title="xml是什么格式的文件"><img
										src="https://img.php.cn/upload/subject/202411/28/2024112814063976885.jpg?x-oss-process=image/resize,m_fill,h_75,w_120" alt="xml是什么格式的文件" class="hotztaimg"
										onerror="this.src='/static/lhimages/moren/morentu.png'"></a>
								<div class="hotztright flexColumn">
									<a target="_blank" href="/faq/xmlssmgsdwj" class="aClass flexRow hotztra overflowclass" title="xml是什么格式的文件">xml是什么格式的文件</a>
									<p class="aClass flexRow hotztrp overflowclass">xml是一种纯文本格式的文件。xml指的是可扩展标记语言,标准通用标记语言的子集,是一种用于标记电子文件使其具有结构性的标记语言。想了解更多相关的内容,可阅读本专题下面的相关文章。</p>
									<div class="hotztrdown flexRow">
										<div class="htztdsee flexRow"> <b></b>
											<p class="">912</p>
										</div>
										<div class="htztdTime flexRow"> <b></b>
											<p>2024.11.28</p>
										</div>
									</div>
								</div>
							</div>
													<div class="hotztlls flexRow">
								<a target="_blank" href="/faq/mysqlbsfwxcw" class="aClass flexRow hotzta" title="mysql标识符无效错误怎么解决"><img
										src="https://img.php.cn/upload/subject/202312/04/2023120414005535966.jpg?x-oss-process=image/resize,m_fill,h_75,w_120" alt="mysql标识符无效错误怎么解决" class="hotztaimg"
										onerror="this.src='/static/lhimages/moren/morentu.png'"></a>
								<div class="hotztright flexColumn">
									<a target="_blank" href="/faq/mysqlbsfwxcw" class="aClass flexRow hotztra overflowclass" title="mysql标识符无效错误怎么解决">mysql标识符无效错误怎么解决</a>
									<p class="aClass flexRow hotztrp overflowclass">mysql标识符无效错误的解决办法:1、检查标识符是否被其他表或数据库使用;2、检查标识符是否包含特殊字符;3、使用引号包裹标识符;4、使用反引号包裹标识符;5、检查MySQL的配置文件等等。本专题为大家提供相关的文章、下载、课程内容,供大家免费下载体验。</p>
									<div class="hotztrdown flexRow">
										<div class="htztdsee flexRow"> <b></b>
											<p class="">174</p>
										</div>
										<div class="htztdTime flexRow"> <b></b>
											<p>2023.12.04</p>
										</div>
									</div>
								</div>
							</div>
													<div class="hotztlls flexRow">
								<a target="_blank" href="/faq/pythonbsfynx" class="aClass flexRow hotzta" title="Python标识符有哪些"><img
										src="https://img.php.cn/upload/subject/202401/27/2024012713541094379.jpg?x-oss-process=image/resize,m_fill,h_75,w_120" alt="Python标识符有哪些" class="hotztaimg"
										onerror="this.src='/static/lhimages/moren/morentu.png'"></a>
								<div class="hotztright flexColumn">
									<a target="_blank" href="/faq/pythonbsfynx" class="aClass flexRow hotztra overflowclass" title="Python标识符有哪些">Python标识符有哪些</a>
									<p class="aClass flexRow hotztrp overflowclass">Python标识符有变量标识符、函数标识符、类标识符、模块标识符、下划线开头的标识符、双下划线开头、双下划线结尾的标识符、整型标识符、浮点型标识符等等。本专题为大家提供相关的文章、下载、课程内容,供大家免费下载体验。</p>
									<div class="hotztrdown flexRow">
										<div class="htztdsee flexRow"> <b></b>
											<p class="">267</p>
										</div>
										<div class="htztdTime flexRow"> <b></b>
											<p>2024.02.23</p>
										</div>
									</div>
								</div>
							</div>
													<div class="hotztlls flexRow">
								<a target="_blank" href="/faq/javabshifuhej" class="aClass flexRow hotzta" title="java标识符合集"><img
										src="https://img.php.cn/upload/subject/202506/11/2025061118001957840.jpg?x-oss-process=image/resize,m_fill,h_75,w_120" alt="java标识符合集" class="hotztaimg"
										onerror="this.src='/static/lhimages/moren/morentu.png'"></a>
								<div class="hotztright flexColumn">
									<a target="_blank" href="/faq/javabshifuhej" class="aClass flexRow hotztra overflowclass" title="java标识符合集">java标识符合集</a>
									<p class="aClass flexRow hotztrp overflowclass">本专题整合了java标识符相关内容,想了解更多详细内容,请阅读下面的文章。</p>
									<div class="hotztrdown flexRow">
										<div class="htztdsee flexRow"> <b></b>
											<p class="">250</p>
										</div>
										<div class="htztdTime flexRow"> <b></b>
											<p>2025.06.11</p>
										</div>
									</div>
								</div>
							</div>
													<div class="hotztlls flexRow">
								<a target="_blank" href="/faq/bjbdnkfymclff" class="aClass flexRow hotzta" title="笔记本电脑卡反应很慢处理方法汇总"><img
										src="https://img.php.cn/upload/subject/202512/25/2025122517535761441.jpg?x-oss-process=image/resize,m_fill,h_75,w_120" alt="笔记本电脑卡反应很慢处理方法汇总" class="hotztaimg"
										onerror="this.src='/static/lhimages/moren/morentu.png'"></a>
								<div class="hotztright flexColumn">
									<a target="_blank" href="/faq/bjbdnkfymclff" class="aClass flexRow hotztra overflowclass" title="笔记本电脑卡反应很慢处理方法汇总">笔记本电脑卡反应很慢处理方法汇总</a>
									<p class="aClass flexRow hotztrp overflowclass">本专题整合了笔记本电脑卡反应慢解决方法,阅读专题下面的文章了解更多详细内容。</p>
									<div class="hotztrdown flexRow">
										<div class="htztdsee flexRow"> <b></b>
											<p class="">1</p>
										</div>
										<div class="htztdTime flexRow"> <b></b>
											<p>2025.12.25</p>
										</div>
									</div>
								</div>
							</div>
											</div>
				</div>

				<div class="hotdownload ">
					<div class="rightdTitle flexRow">
						<div class="title-left flexRow"> <b></b>
							<p>热门下载</p>
						</div>
						<a target="_blank" class="rititle-more flexRow" href="/xiazai" title="热门下载"><span>更多</span><b></b></a>
					</div>
					<div class="hotdownTab">
						<div class="hdTabs flexRow">
							<div class="check" data-id="onef">网站特效 <b></b> </div> /
							<div class="" data-id="twof">网站源码 <b></b></div> /
							<div class="" data-id="threef">网站素材 <b></b></div> /
							<div class="" data-id="fourf">前端模板 <b></b></div>
						</div>
						<ul class="onef">
															<li>
									<div class="wzrfourli flexRow">
										<b></b>
										<a target="_blank" title="产品分类鼠标经过高亮CSS特效" href="/xiazai/js/8111"><span>[窗口特效]</span><span>产品分类鼠标经过高亮CSS特效</span></a>
									</div>
								</li>
															<li>
									<div class="wzrfourli flexRow">
										<b></b>
										<a target="_blank" title="jQuery基于CSS3文字动画特效" href="/xiazai/js/8110"><span>[文字特效]</span><span>jQuery基于CSS3文字动画特效</span></a>
									</div>
								</li>
															<li>
									<div class="wzrfourli flexRow">
										<b></b>
										<a target="_blank" title="vue限时抢购tab选项卡代码" href="/xiazai/js/8109"><span>[选项卡TAB]</span><span>vue限时抢购tab选项卡代码</span></a>
									</div>
								</li>
															<li>
									<div class="wzrfourli flexRow">
										<b></b>
										<a target="_blank" title="js左侧边导航菜鼠标悬停展开二级菜单导航" href="/xiazai/js/8108"><span>[菜单导航]</span><span>js左侧边导航菜鼠标悬停展开二级菜单导航</span></a>
									</div>
								</li>
															<li>
									<div class="wzrfourli flexRow">
										<b></b>
										<a target="_blank" title="jquery注册表单" href="/xiazai/js/8107"><span>[表单按钮]</span><span>jquery注册表单</span></a>
									</div>
								</li>
															<li>
									<div class="wzrfourli flexRow">
										<b></b>
										<a target="_blank" title="js网页点击右键菜单代码" href="/xiazai/js/8106"><span>[窗口特效]</span><span>js网页点击右键菜单代码</span></a>
									</div>
								</li>
															<li>
									<div class="wzrfourli flexRow">
										<b></b>
										<a target="_blank" title="jQuery轮播图插件simpleSlider" href="/xiazai/js/8105"><span>[图片特效]</span><span>jQuery轮播图插件simpleSlider</span></a>
									</div>
								</li>
															<li>
									<div class="wzrfourli flexRow">
										<b></b>
										<a target="_blank" title="js扇形旋转菜单ui特效" href="/xiazai/js/8104"><span>[菜单导航]</span><span>js扇形旋转菜单ui特效</span></a>
									</div>
								</li>
															<li>
									<div class="wzrfourli flexRow">
										<b></b>
										<a target="_blank" title="jQ AJAX文件上传表单 jQuery AJAX文件上传表单代码下载" href="/xiazai/js/8103"><span>[表单按钮]</span><span>jQ AJAX文件上传表单 jQuery AJAX文件上传表单代码下载</span></a>
									</div>
								</li>
															<li>
									<div class="wzrfourli flexRow">
										<b></b>
										<a target="_blank" title="动画库animate.css文字特效" href="/xiazai/js/8102"><span>[文字特效]</span><span>动画库animate.css文字特效</span></a>
									</div>
								</li>
													</ul>
						<ul class="twof" style="display:none;">
															<li>
									<div class="wzrfourli flexRow">
										<b></b>
										<a target="_blank" href="/xiazai/code/11353" title="雅龙智能装备工业设备类WordPress主题1.0"><span>[企业站源码]</span><span>雅龙智能装备工业设备类WordPress主题1.0</span> </a>
									</div>
								</li>
															<li>
									<div class="wzrfourli flexRow">
										<b></b>
										<a target="_blank" href="/xiazai/code/11352" title="威发卡自动发卡系统"><span>[电商源码]</span><span>威发卡自动发卡系统</span> </a>
									</div>
								</li>
															<li>
									<div class="wzrfourli flexRow">
										<b></b>
										<a target="_blank" href="/xiazai/code/11351" title="卡密分发系统"><span>[电商源码]</span><span>卡密分发系统</span> </a>
									</div>
								</li>
															<li>
									<div class="wzrfourli flexRow">
										<b></b>
										<a target="_blank" href="/xiazai/code/11350" title="中华陶瓷网"><span>[电商源码]</span><span>中华陶瓷网</span> </a>
									</div>
								</li>
															<li>
									<div class="wzrfourli flexRow">
										<b></b>
										<a target="_blank" href="/xiazai/code/11349" title="简洁粉色食品公司网站"><span>[电商源码]</span><span>简洁粉色食品公司网站</span> </a>
									</div>
								</li>
															<li>
									<div class="wzrfourli flexRow">
										<b></b>
										<a target="_blank" href="/xiazai/code/11348" title="极速网店系统"><span>[电商源码]</span><span>极速网店系统</span> </a>
									</div>
								</li>
															<li>
									<div class="wzrfourli flexRow">
										<b></b>
										<a target="_blank" href="/xiazai/code/11347" title="淘宝妈妈_淘客推广系统"><span>[电商源码]</span><span>淘宝妈妈_淘客推广系统</span> </a>
									</div>
								</li>
															<li>
									<div class="wzrfourli flexRow">
										<b></b>
										<a target="_blank" href="/xiazai/code/11346" title="积客B2SCMS商城系统"><span>[电商源码]</span><span>积客B2SCMS商城系统</span> </a>
									</div>
								</li>
															<li>
									<div class="wzrfourli flexRow">
										<b></b>
										<a target="_blank" href="/xiazai/code/11345" title="CODEC2I 众筹系统"><span>[电商源码]</span><span>CODEC2I 众筹系统</span> </a>
									</div>
								</li>
															<li>
									<div class="wzrfourli flexRow">
										<b></b>
										<a target="_blank" href="/xiazai/code/11344" title="ieshop超级网店系统"><span>[电商源码]</span><span>ieshop超级网店系统</span> </a>
									</div>
								</li>
													</ul>
						<ul class="threef" style="display:none;">
															<li>
									<div class="wzrfourli flexRow">
										<b></b>
										<a target="_blank" href="/xiazai/sucai/4131" title="国潮复古肌理灯笼矢量素材"><span>[网站素材]</span><span>国潮复古肌理灯笼矢量素材</span> </a>
									</div>
								</li>
															<li>
									<div class="wzrfourli flexRow">
										<b></b>
										<a target="_blank" href="/xiazai/sucai/4130" title="手绘户外山林露营海报矢量模板"><span>[网站素材]</span><span>手绘户外山林露营海报矢量模板</span> </a>
									</div>
								</li>
															<li>
									<div class="wzrfourli flexRow">
										<b></b>
										<a target="_blank" href="/xiazai/sucai/4129" title="2026新年快乐艺术字PSD分层素材下载"><span>[网站素材]</span><span>2026新年快乐艺术字PSD分层素材下载</span> </a>
									</div>
								</li>
															<li>
									<div class="wzrfourli flexRow">
										<b></b>
										<a target="_blank" href="/xiazai/sucai/4128" title="复古假日鸡尾酒菜单矢量模板"><span>[网站素材]</span><span>复古假日鸡尾酒菜单矢量模板</span> </a>
									</div>
								</li>
															<li>
									<div class="wzrfourli flexRow">
										<b></b>
										<a target="_blank" href="/xiazai/sucai/4127" title="时尚耳饰宣传海报PSD素材下载"><span>[网站素材]</span><span>时尚耳饰宣传海报PSD素材下载</span> </a>
									</div>
								</li>
															<li>
									<div class="wzrfourli flexRow">
										<b></b>
										<a target="_blank" href="/xiazai/sucai/4126" title="绘画艺术活动传单A5模板设计下载"><span>[网站素材]</span><span>绘画艺术活动传单A5模板设计下载</span> </a>
									</div>
								</li>
															<li>
									<div class="wzrfourli flexRow">
										<b></b>
										<a target="_blank" href="/xiazai/sucai/4125" title="2026马年奔跑骏马剪影矢量素材"><span>[网站素材]</span><span>2026马年奔跑骏马剪影矢量素材</span> </a>
									</div>
								</li>
															<li>
									<div class="wzrfourli flexRow">
										<b></b>
										<a target="_blank" href="/xiazai/sucai/4124" title="2026年数字艺术字分层PSD素材下载"><span>[网站素材]</span><span>2026年数字艺术字分层PSD素材下载</span> </a>
									</div>
								</li>
															<li>
									<div class="wzrfourli flexRow">
										<b></b>
										<a target="_blank" href="/xiazai/sucai/4123" title="圣诞酒会派对邀请函矢量模板"><span>[网站素材]</span><span>圣诞酒会派对邀请函矢量模板</span> </a>
									</div>
								</li>
															<li>
									<div class="wzrfourli flexRow">
										<b></b>
										<a target="_blank" href="/xiazai/sucai/4122" title="2026年全年日历表PSD素材下载"><span>[网站素材]</span><span>2026年全年日历表PSD素材下载</span> </a>
									</div>
								</li>
													</ul>
						<ul class="fourf" style="display:none;">
															<li>
									<div class="wzrfourli flexRow">
										<b></b>
										<a target="_blank" href="/xiazai/code/8590"  title="驾照考试驾校HTML5网站模板"><span>[前端模板]</span><span>驾照考试驾校HTML5网站模板</span> </a>
									</div>
								</li>
															<li>
									<div class="wzrfourli flexRow">
										<b></b>
										<a target="_blank" href="/xiazai/code/8589"  title="驾照培训服务机构宣传网站模板"><span>[前端模板]</span><span>驾照培训服务机构宣传网站模板</span> </a>
									</div>
								</li>
															<li>
									<div class="wzrfourli flexRow">
										<b></b>
										<a target="_blank" href="/xiazai/code/8588"  title="HTML5房地产公司宣传网站模板"><span>[前端模板]</span><span>HTML5房地产公司宣传网站模板</span> </a>
									</div>
								</li>
															<li>
									<div class="wzrfourli flexRow">
										<b></b>
										<a target="_blank" href="/xiazai/code/8587"  title="新鲜有机肉类宣传网站模板"><span>[前端模板]</span><span>新鲜有机肉类宣传网站模板</span> </a>
									</div>
								</li>
															<li>
									<div class="wzrfourli flexRow">
										<b></b>
										<a target="_blank" href="/xiazai/code/8586"  title="响应式天气预报宣传网站模板"><span>[前端模板]</span><span>响应式天气预报宣传网站模板</span> </a>
									</div>
								</li>
															<li>
									<div class="wzrfourli flexRow">
										<b></b>
										<a target="_blank" href="/xiazai/code/8585"  title="房屋建筑维修公司网站CSS模板"><span>[前端模板]</span><span>房屋建筑维修公司网站CSS模板</span> </a>
									</div>
								</li>
															<li>
									<div class="wzrfourli flexRow">
										<b></b>
										<a target="_blank" href="/xiazai/code/8584"  title="响应式志愿者服务网站模板"><span>[前端模板]</span><span>响应式志愿者服务网站模板</span> </a>
									</div>
								</li>
															<li>
									<div class="wzrfourli flexRow">
										<b></b>
										<a target="_blank" href="/xiazai/code/8583"  title="创意T恤打印店网站HTML5模板"><span>[前端模板]</span><span>创意T恤打印店网站HTML5模板</span> </a>
									</div>
								</li>
															<li>
									<div class="wzrfourli flexRow">
										<b></b>
										<a target="_blank" href="/xiazai/code/8582"  title="网页开发岗位简历作品展示网页模板"><span>[前端模板]</span><span>网页开发岗位简历作品展示网页模板</span> </a>
									</div>
								</li>
															<li>
									<div class="wzrfourli flexRow">
										<b></b>
										<a target="_blank" href="/xiazai/code/8581"  title="响应式人力资源机构宣传网站模板"><span>[前端模板]</span><span>响应式人力资源机构宣传网站模板</span> </a>
									</div>
								</li>
													</ul>
					</div>
					<script>
						$('.hdTabs>div').click(function (e) {
							$('.hdTabs>div').removeClass('check')
							$(this).addClass('check')
							$('.hotdownTab>ul').css('display', 'none')
							$('.' + e.currentTarget.dataset.id).show()
						})
					</script>

				</div>

				<div class="artrig-adv ">
					<script type="text/javascript" src="https://teacher.php.cn/php/MDM3MTk1MGYxYjI5ODJmNTE0ZWVkZTA3NmJhYzhmMjI6Og=="></script>
                </div>



				<div class="xgarts ">
					<div class="rightdTitle flexRow">
						<div class="title-left flexRow"> <b></b>
							<p>相关下载</p>
						</div>
						<a target="_blank" class="rititle-more flexRow" href="/xiazai" title="相关下载"><span>更多</span><b></b></a>
					</div>
					<div class="xgwzlist ">
											<div class="xgwzlid flexRow"><b></b><a target="_blank" title="通吃客零食网整站 for Shopex" href="/xiazai/code/10454">通吃客零食网整站 for Shopex</a></div>
											<div class="xgwzlid flexRow"><b></b><a target="_blank" title="赣极购物商城网店建站软件系统" href="/xiazai/code/10145">赣极购物商城网店建站软件系统</a></div>
											<div class="xgwzlid flexRow"><b></b><a target="_blank" title="久久企业网站后台管理系统1.0" href="/xiazai/code/9972">久久企业网站后台管理系统1.0</a></div>
											<div class="xgwzlid flexRow"><b></b><a target="_blank" title="铁通无线固话号码销售站" href="/xiazai/code/9211">铁通无线固话号码销售站</a></div>
										</div>

				</div>

				<div class="jpkc">
					<div class="rightdTitle flexRow">
						<div class="title-left flexRow"> <b></b>
							<p>精品课程</p>
						</div>
						<a class="rititle-more flexRow" target="_blank" href="/course/sort_new.html" title="精品课程"><span>更多</span><b></b></a>
					</div>
					<div class=" jpkcTab">
						<div class=" jpkcTabs flexRow">
							<div class="check" data-id="onefd">相关推荐 <b></b> </div> /
							<div class="" data-id="twofd">热门推荐 <b></b></div> /
							<div class="" data-id="threefd">最新课程 <b></b></div>
						</div>
						<div class="onefd jpktabd">
													<div  class="ristyA flexRow " >
								<a target="_blank" href="/course/1688.html" title="Django 教程">
									<img src="https://img.php.cn/upload/course/000/000/090/68a6fd2c0a705569.jpeg?x-oss-process=image/resize,m_fill,h_75,w_120" alt="Django 教程" class="ristyAimg"
										onerror="this.src='/static/mobimages/moren/morentu.png'">
								</a>
								<div class="ristyaRight flexColumn">
									<a target="_blank" href="/course/1688.html" title="Django 教程"
										class="rirightp overflowclass">Django 教程</a>

									<div class="risrdown flexRow">
										<p>共28课时 | 2.4万人学习</p>
									</div>
								</div>
							</div>
													<div  class="ristyA flexRow " >
								<a target="_blank" href="/course/1684.html" title="SciPy 教程">
									<img src="https://img.php.cn/upload/course/000/000/090/689da63e955bb889.png?x-oss-process=image/resize,m_fill,h_75,w_120" alt="SciPy 教程" class="ristyAimg"
										onerror="this.src='/static/mobimages/moren/morentu.png'">
								</a>
								<div class="ristyaRight flexColumn">
									<a target="_blank" href="/course/1684.html" title="SciPy 教程"
										class="rirightp overflowclass">SciPy 教程</a>

									<div class="risrdown flexRow">
										<p>共10课时 | 0.9万人学习</p>
									</div>
								</div>
							</div>
													<div  class="ristyA flexRow " >
								<a target="_blank" href="/course/1683.html" title="Sass 教程">
									<img src="https://img.php.cn/upload/course/000/000/090/689da3d823e1e854.png?x-oss-process=image/resize,m_fill,h_75,w_120" alt="Sass 教程" class="ristyAimg"
										onerror="this.src='/static/mobimages/moren/morentu.png'">
								</a>
								<div class="ristyaRight flexColumn">
									<a target="_blank" href="/course/1683.html" title="Sass 教程"
										class="rirightp overflowclass">Sass 教程</a>

									<div class="risrdown flexRow">
										<p>共14课时 | 0.7万人学习</p>
									</div>
								</div>
							</div>
												</div>

						<div class="twofd jpktabd" style="display:none;">
															<div  class="ristyA flexRow " >
									<a target="_blank" href="/course/1656.html" title="JavaScript ES5基础线上课程教学">
										<img src="https://img.php.cn/upload/course/000/000/081/6862652adafef801.png?x-oss-process=image/resize,m_fill,h_86,w_140" alt="JavaScript ES5基础线上课程教学" class="ristyAimg"
											onerror="this.src='/static/mobimages/moren/morentu.png'">
									</a>
									<div class="ristyaRight flexColumn">
										<a target="_blank" href="/course/1656.html" title="JavaScript ES5基础线上课程教学"
											class="rirightp overflowclass">JavaScript ES5基础线上课程教学</a>

										<div class="risrdown flexRow">
											<p>共6课时 | 6.9万人学习</p>
										</div>
									</div>
								</div>
															<div  class="ristyA flexRow " >
									<a target="_blank" href="/course/812.html" title="最新ThinkPHP 5.1全球首发视频教程(60天成就PHP大牛线上培训班课)">
										<img src="https://img.php.cn/upload/course/000/000/041/620debc3eab3f377.jpg?x-oss-process=image/resize,m_fill,h_86,w_140" alt="最新ThinkPHP 5.1全球首发视频教程(60天成就PHP大牛线上培训班课)" class="ristyAimg"
											onerror="this.src='/static/mobimages/moren/morentu.png'">
									</a>
									<div class="ristyaRight flexColumn">
										<a target="_blank" href="/course/812.html" title="最新ThinkPHP 5.1全球首发视频教程(60天成就PHP大牛线上培训班课)"
											class="rirightp overflowclass">最新ThinkPHP 5.1全球首发视频教程(60天成就PHP大牛线上培训班课)</a>

										<div class="risrdown flexRow">
											<p>共79课时 | 150.5万人学习</p>
										</div>
									</div>
								</div>
															<div  class="ristyA flexRow " >
									<a target="_blank" href="/course/639.html" title="phpStudy极速入门视频教程">
										<img src="https://img.php.cn/upload/course/000/000/068/62611ef88fcec821.jpg?x-oss-process=image/resize,m_fill,h_86,w_140" alt="phpStudy极速入门视频教程" class="ristyAimg"
											onerror="this.src='/static/mobimages/moren/morentu.png'">
									</a>
									<div class="ristyaRight flexColumn">
										<a target="_blank" href="/course/639.html" title="phpStudy极速入门视频教程"
											class="rirightp overflowclass">phpStudy极速入门视频教程</a>

										<div class="risrdown flexRow">
											<p>共6课时 | 53.2万人学习</p>
										</div>
									</div>
								</div>
													</div>

						<div class="threefd jpktabd" style="display:none;">
															<div  class="ristyA flexRow " >
										<a target="_blank" href="/course/1696.html" title="最新Python教程 从入门到精通">
											<img src="https://img.php.cn/upload/course/000/000/081/68c135bb72783194.png?x-oss-process=image/resize,m_fill,h_86,w_140" alt="最新Python教程 从入门到精通" class="ristyAimg"
												onerror="this.src='/static/mobimages/moren/morentu.png'">
										</a>
										<div class="ristyaRight flexColumn">
											<a target="_blank" href="/course/1696.html" title="最新Python教程 从入门到精通"
												class="rirightp overflowclass">最新Python教程 从入门到精通</a>

											<div class="risrdown flexRow">
												<p>共4课时 | 0.6万人学习</p>
											</div>
										</div>
									</div>
																<div  class="ristyA flexRow " >
										<a target="_blank" href="/course/1656.html" title="JavaScript ES5基础线上课程教学">
											<img src="https://img.php.cn/upload/course/000/000/081/6862652adafef801.png?x-oss-process=image/resize,m_fill,h_86,w_140" alt="JavaScript ES5基础线上课程教学" class="ristyAimg"
												onerror="this.src='/static/mobimages/moren/morentu.png'">
										</a>
										<div class="ristyaRight flexColumn">
											<a target="_blank" href="/course/1656.html" title="JavaScript ES5基础线上课程教学"
												class="rirightp overflowclass">JavaScript ES5基础线上课程教学</a>

											<div class="risrdown flexRow">
												<p>共6课时 | 6.9万人学习</p>
											</div>
										</div>
									</div>
																<div  class="ristyA flexRow " >
										<a target="_blank" href="/course/1655.html" title="PHP新手语法线上课程教学">
											<img src="https://img.php.cn/upload/course/000/000/081/684a8c23d811b293.png?x-oss-process=image/resize,m_fill,h_86,w_140" alt="PHP新手语法线上课程教学" class="ristyAimg"
												onerror="this.src='/static/mobimages/moren/morentu.png'">
										</a>
										<div class="ristyaRight flexColumn">
											<a target="_blank" href="/course/1655.html" title="PHP新手语法线上课程教学"
												class="rirightp overflowclass">PHP新手语法线上课程教学</a>

											<div class="risrdown flexRow">
												<p>共13课时 | 0.8万人学习</p>
											</div>
										</div>
									</div>
														</div>
						<script>
							$('.jpkcTabs>div').click(function (e) {
								$('.jpkcTabs>div').removeClass('check')
								$(this).addClass('check')
								$('.jpkcTab .jpktabd').css('display', 'none')
								$('.' + e.currentTarget.dataset.id).show()
							})
						</script>

					</div>
				</div>

				<div class="zxarts ">
					<div class="rightdTitle flexRow">
						<div class="title-left flexRow"> <b></b>
							<p>最新文章</p>
						</div>
						<a class="rititle-more flexRow" href="" title="最新文章" target="_blank"><span>更多</span><b></b></a>
					</div>
					<div class="xgwzlist ">
													<div class="xgwzlid flexRow"><b></b><a target="_blank" title="怎么用Go语言的encoding/xml包处理XML" href="/faq/1893953.html">怎么用Go语言的encoding/xml包处理XML</a></div>
													<div class="xgwzlid flexRow"><b></b><a target="_blank" title="Python如何处理自闭合标签 <tag/> 的解析" href="/faq/1893945.html">Python如何处理自闭合标签 <tag/> 的解析</a></div>
													<div class="xgwzlid flexRow"><b></b><a target="_blank" title="如何用Python解析PubMed的XML数据" href="/faq/1893941.html">如何用Python解析PubMed的XML数据</a></div>
													<div class="xgwzlid flexRow"><b></b><a target="_blank" title="如何解决XML外部实体注入(XXE)漏洞" href="/faq/1893921.html">如何解决XML外部实体注入(XXE)漏洞</a></div>
													<div class="xgwzlid flexRow"><b></b><a target="_blank" title="XML中的注释是什么,它在文档中起什么作用?" href="/faq/1893904.html">XML中的注释是什么,它在文档中起什么作用?</a></div>
													<div class="xgwzlid flexRow"><b></b><a target="_blank" title="如何在XML中嵌入HTML XHTML是什么" href="/faq/1893901.html">如何在XML中嵌入HTML XHTML是什么</a></div>
													<div class="xgwzlid flexRow"><b></b><a target="_blank" title="Java如何更新XML文件中的一个值" href="/faq/1891196.html">Java如何更新XML文件中的一个值</a></div>
													<div class="xgwzlid flexRow"><b></b><a target="_blank" title="Spring Batch怎么读取XML文件 StaxEventItemReader配置" href="/faq/1891183.html">Spring Batch怎么读取XML文件 StaxEventItemReader配置</a></div>
													<div class="xgwzlid flexRow"><b></b><a target="_blank" title="C#的WebBrowser控件怎么加载和显示XML" href="/faq/1891077.html">C#的WebBrowser控件怎么加载和显示XML</a></div>
													<div class="xgwzlid flexRow"><b></b><a target="_blank" title="在浏览器中怎么用XSLT转换XML(客户端转换)" href="/faq/1891063.html">在浏览器中怎么用XSLT转换XML(客户端转换)</a></div>
											</div>

				</div>






			</div>



		</div>

	</div>
	<!--底部-->
	<div class="phpFoot">
    <div class="phpFootIn">
        <div class="phpFootCont">
            <div class="phpFootLeft">
                <dl>
                    <dt>
                        <a target="_blank"  href="/about/us.html" rel="nofollow"  title="关于我们" class="cBlack">关于我们</a>
                        <a target="_blank"  href="/about/disclaimer.html" rel="nofollow"  title="免责申明" class="cBlack">免责申明</a>
                        <a target="_blank"  href="/about/jbzx.html" rel="nofollow"  title="举报中心" class="cBlack">举报中心</a>
                        <a   href="javascript:;" rel="nofollow" onclick="advice_data(99999999,'意见反馈')"   title="意见反馈" class="cBlack">意见反馈</a>
                        <a target="_blank"  href="https://www.php.cn/teacher.html" rel="nofollow"   title="讲师合作" class="cBlack">讲师合作</a>
                        <a  target="_blank" href="https://www.php.cn/blog/detail/20304.html" rel="nofollow"  title="广告合作" class="cBlack">广告合作</a>
                        <a  target="_blank" href="/new/"    title="最新文章列表" class="cBlack">最新更新</a>
                                                <div class="clear"></div>
                    </dt>
                    <dd class="cont1">php中文网:公益在线php培训,帮助PHP学习者快速成长!</dd>
                    <dd class="cont2">
                      <span class="ylwTopBox">
                        <a   href="javascript:;"  class="cBlack"><b class="icon1"></b>关注服务号</a>
                        <em style="display:none;" class="ylwTopSub">
                          <p>微信扫码<br/>关注PHP中文网服务号</p>
                          <img src="/static/images/examples/text16.png"/>
                        </em>
                      </span>
                        <span class="ylwTopBox">
                        <a   href="tencent://message/?uin=27220243&Site=www.php.cn&Menu=yes"  class="cBlack"><b class="icon2"></b>技术交流群</a>
                        <em style="display:none;" class="ylwTopSub">
                          <p>QQ扫码<br/>加入技术交流群</p>
                          <img src="/static/images/examples/text18.png"/>
                        </em>
                      </span>
                        <div class="clear"></div>
                    </dd>
                </dl>
                
            </div>
            <div class="phpFootRight">
                <div class="phpFootMsg">
                    <span><img src="/static/images/examples/text17.png"/></span>
                    <dl>
                        <dt>PHP中文网订阅号</dt>
                        <dd>每天精选资源文章推送</dd>
                    </dl>
                </div>
            </div>
        </div>
    </div>
    <div class="phpFootCode">
        <div class="phpFootCodeIn"><p>Copyright 2014-2025 <a   href="https://www.php.cn/" >https://www.php.cn/</a> All Rights Reserved | php.cn | <a   href="https://beian.miit.gov.cn/" rel="nofollow" >湘ICP备2023035733号</a></p><a   href="http://www.beian.gov.cn/portal/index.do" rel="nofollow" ><b></b></a></div>
    </div>
</div>
<input type="hidden" id="verifycode" value="/captcha.html">
<script>
    var _hmt = _hmt || [];
    (function() {
        var hm = document.createElement("script");
        hm.src = "https://hm.baidu.com/hm.js?c0e685c8743351838d2a7db1c49abd56";
        var s = document.getElementsByTagName("script")[0];
        s.parentNode.insertBefore(hm, s);
    })();
</script>
<script>layui.use(['element', 'carousel'], function () {var element = layui.element;$ = layui.jquery;var carousel = layui.carousel;carousel.render({elem: '#test1', width: '100%', height: '330px', arrow: 'always'});$.getScript('/static/js/jquery.lazyload.min.js', function () {$("img").lazyload({placeholder: "/static/images/load.jpg", effect: "fadeIn", threshold: 200, skip_invisible: false});});});</script>

<span class="layui-hide"><script type="text/javascript" src="https://s4.cnzz.com/z_stat.php?id=1280886301&web_id=1280886301"></script></span>

<script src="/static/js/cdn.js?v=1.0.1"></script>



	<!--底部 end-->
	<!-- content -->
	<!--
    <div class="phpFudong">
        <div class="phpFudongIn">
            <div class="phpFudongImg"></div>
            <div class="phpFudongXue">登录PHP中文网,和优秀的人一起学习!</div>
            <div class="phpFudongQuan">全站<span>2000+</span>教程免费学</div>
            <div class="phpFudongCode"><a   href="javascript:;" id="login" title="微信扫码登录">微信扫码登录</a></div>
            <div class="phpGuanbi" onclick="$('.phpFudong').hide();"></div>
            <div class="clear"></div>
        </div>
    </div>
-->	<!--底部浮动层 end-->
	<!--侧导航-->
	<style>
    .layui-fixbar{display: none;}
</style>
<div class="phpSdhBox" style="height:240px !important;">
    <li>
        <div class="phpSdhIn">
            <div class="phpSdhTitle">
                <a   href="/k24.html"  class="hover" title="PHP学习">
                    <b class="icon1"></b>
                    <p>PHP学习</p>
                </a>
            </div>
        </div>
    </li>
    <li>
        <div class="phpSdhIn">
            <div class="phpSdhTitle">
                <a   href="https://www.php.cn/blog/detail/1047189.html" >
                    <b class="icon2"></b>
                    <p>技术支持</p>
                </a>
            </div>
        </div>
    </li>
    <li>
        <div class="phpSdhIn">
            <div class="phpSdhTitle">
                <a   href="#">
                    <b class="icon6"></b>
                    <p>返回顶部</p>
                </a>
            </div>
        </div>
    </li>
</div>
	</body>

</html>

<script type="text/javascript" src="/hitsUp?type=article&id=1470505&time=1766695282">
</script>
<script src="/static/ueditor/third-party/SyntaxHighlighter/shCore.js?1766695282"></script>
<script>
	article_status = "1221864";
</script>
<input type="hidden" id="verifycode" value="/captcha.html">
<script type="text/javascript" src="/static/js/global.min.js?5.5.33"></script>
<link rel='stylesheet' id='_main-css' href='/static/css/viewer.min.css?2' type='text/css' media='all' />
<script type='text/javascript' src='/static/js/viewer.min.js?1'></script>
<script type='text/javascript' src='/static/js/jquery-viewer.min.js'></script>
<script type="text/javascript" src="/static/js/jquery.cookie.js"></script>
<script>var _hmt = _hmt || [];(function(){var hm = document.createElement("script");hm.src="//hm.baidu.com/hm.js?c0e685c8743351838d2a7db1c49abd56";var s=document.getElementsByTagName("script")[0];s.parentNode.insertBefore(hm, s);})();(function(){var bp = document.createElement('script');var curProtocol = window.location.protocol.split(':')[0];if(curProtocol === 'https'){bp.src = 'https://zz.bdstatic.com/linksubmit/push.js';}else{bp.src = 'http://push.zhanzhang.baidu.com/push.js';};var s = document.getElementsByTagName("script")[0];s.parentNode.insertBefore(bp, s);})();</script>
	

<script>
	function setCookie(name, value, iDay) { //name相当于键,value相当于值,iDay为要设置的过期时间(天)
		var oDate = new Date();
		oDate.setDate(oDate.getDate() + iDay);
		document.cookie = name + '=' + value + ';path=/;domain=.php.cn;expires=' + oDate;
	}

	function getCookie(name) {
		var cookieArr = document.cookie.split(";");
		for (var i = 0; i < cookieArr.length; i++) {
			var cookiePair = cookieArr[i].split("=");
			if (name == cookiePair[0].trim()) {
				return decodeURIComponent(cookiePair[1]);
			}
		}
		return null;
	}
</script>


<!-- Matomo -->
<script>
	var _paq = window._paq = window._paq || [];
	/* tracker methods like "setCustomDimension" should be called before "trackPageView" */
	_paq.push(['trackPageView']);
	_paq.push(['enableLinkTracking']);
	(function () {
		var u = "https://tongji.php.cn/";
		_paq.push(['setTrackerUrl', u + 'matomo.php']);
		_paq.push(['setSiteId', '7']);
		var d = document,
			g = d.createElement('script'),
			s = d.getElementsByTagName('script')[0];
		g.async = true;
		g.src = u + 'matomo.js';
		s.parentNode.insertBefore(g, s);
	})();
</script>
<!-- End Matomo Code -->

<script>
	setCookie('is_article', 1, 1);
</script>

<script>
	var is_login = "0";
        var show = 0;
        var ceng = getCookie('ceng');
        //未登录复制显示登录按钮
        if(is_login == 0 && false){
            $(".code").hover(function(){
                $(this).find('.contentsignin').show();
            },function(){
                $(this).find('.contentsignin').hide();
            });
            //不给复制
            $('.code').bind("cut copy paste",function(e) {
                e.preventDefault();
            });
            $('.code .contentsignin').click(function(){
                $(document).trigger("api.loginpopbox");
            })
        }else{
            // 获取所有的 <pre> 元素
            var preElements = document.querySelectorAll('pre');
            preElements.forEach(function(preElement) {
                // 创建复制按钮
                var copyButton = document.createElement('button');
                copyButton.className = 'copy-button';
                copyButton.textContent = '复制';
                // 添加点击事件处理程序
                copyButton.addEventListener('click', function() {
                    // 获取当前按钮所属的 <pre> 元素中的文本内容
                    var textContent = preElement.textContent.trim();
                    // 创建一个临时 textarea 元素并设置其值为 <pre> 中的文本内容
                    var tempTextarea = document.createElement('textarea');
                    tempTextarea.value = textContent;
                    // 将临时 textarea 添加到文档中
                    document.body.appendChild(tempTextarea);
                    // 选中临时 textarea 中的文本内容并执行复制操作
                    tempTextarea.select();
                    document.execCommand('copy');
                    // 移除临时 textarea 元素
                    document.body.removeChild(tempTextarea);
                    // 更新按钮文本为 "已复制"
                    this.textContent = '已复制';
                });

                // 创建AI写代码按钮
                var aiButton = document.createElement('button');
                aiButton.className = 'copy-button';
                aiButton.textContent = 'AI写代码';
                aiButton.style.marginLeft = '5px';
                aiButton.style.marginRight = '5px';
                // 添加点击事件处理程序
                aiButton.addEventListener('click', function() {
                // Generate a random number between 0 and 1
                        var randomChance = Math.random();

                    // If the random number is less than 0.5, open the first URL, else open the second
                    if (randomChance < 0.5) {
                        window.open('https://www.doubao.com/chat/coding?channel=php&source=hw_db_php', '_blank');
                    } else {
                        window.open('https://click.aliyun.com/m/1000402709/', '_blank');
                    }
                });

                // 将按钮添加到 <pre> 元素前面
                preElement.parentNode.insertBefore(copyButton, preElement);
                preElement.parentNode.insertBefore(aiButton, preElement);
        });
        }
</script>