0

0

HTMLOpenGraph怎么设置_社交媒体分享优化教程

看不見的法師

看不見的法師

发布时间:2025-09-17 08:44:01

|

568人浏览过

|

来源于php中文网

原创

设置Open Graph标签可优化网页在社交媒体的分享预览效果,核心是通过在HTML的中添加og:title、og:description、og:image、og:url、og:type等meta标签,主动向社交平台提供标题、描述、图片等信息,避免抓取混乱。同时建议配置Twitter Card标签以适配不同平台,使用Facebook Sharing Debugger等工具验证并清除缓存确保生效,注意图片尺寸(推荐1200×630)、URL规范性和内容同步更新,提升点击率与传播效果。

htmlopengraph怎么设置_社交媒体分享优化教程

设置HTML Open Graph标签,主要是通过在网页的

区域添加一系列
meta
属性,这些属性告诉社交媒体平台如何抓取和展示你的页面内容,从而优化分享时的预览效果。这就像给你的网页内容穿上了一件“社交媒体专属定制服装”,确保它在不同平台上都能以最吸引人的姿态亮相。

解决方案

要为你的网页设置Open Graph(OG)标签,你需要将以下

meta
标签放置在HTML文档的
部分。这些是核心的几个属性,足以让你的内容在社交媒体上拥有一个体面的预览:




    
    
    你的页面标题

    
    
    
    
    
     
    
     

    
     
    
    
    
    
    

    
    
    


    

  • og:title
    : 页面的标题,通常比HTML
    </pre> 更具描述性,且长度可能不同。</li>
    <li><pre class="brush:php;toolbar:false;">og:description</pre>: 页面的简短描述,用于吸引用户点击。</li>
    <li><pre class="brush:php;toolbar:false;">og:image</pre>: 预览图的URL。这张图至关重要,它能极大地提升点击率。推荐图片尺寸至少为1200x630像素,以确保在各种设备上都有良好的显示效果。</li>
    <li><pre class="brush:php;toolbar:false;">og:url</pre>: 页面的规范URL,指向你的内容。</li>
    <li><pre class="brush:php;toolbar:false;">og:type</pre>: 内容的类型,比如<pre class="brush:php;toolbar:false;">website</pre>(网站主页)、<pre class="brush:php;toolbar:false;">article</pre>(文章)、<pre class="brush:php;toolbar:false;">video.movie</pre>(电影)、<pre class="brush:php;toolbar:false;">music.song</pre>(歌曲)等。这会影响社交媒体如何解读和展示你的内容。</li>
    <li><pre class="brush:php;toolbar:false;">og:site_name</pre>: 你的网站名称。</li>
    <li><pre class="brush:php;toolbar:false;">og:locale</pre>: 内容的语言和地区,比如<pre class="brush:php;toolbar:false;">zh_CN</pre>代表简体中文。</li>
    </ul>
    <h3>为什么你的链接分享出去总是一团糟?——Open Graph的价值与常见误区</h3>
    <p>说实话,每次看到自己精心准备的文章链接在<a style="color:#f60; text-decoration:underline;" title="微信" href="https://www.php.cn/zt/16063.html" target="_blank">微信</a>或Twitter上分享出去,结果图片缺失、标题错乱,那感觉真是...心塞。这东西说起来简单,无非就是几行<pre class="brush:php;toolbar:false;">meta</pre>标签,但其背后对品牌传播和内容触达的影响,你真的不能小觑。没有Open Graph,社交媒体平台在抓取你的页面时,就像一个盲人摸象,它只能根据页面标题、第一段文字和页面中随机抓取到的图片来拼凑一个预览。结果往往就是——要么图片模糊,要么标题不搭,要么干脆一片空白。</p>
    <p>Open Graph存在的价值,就是让你主动告诉这些平台:“嘿,看这里!这是我的最佳标题、最吸引人的图片,以及最精炼的描述!”这样一来,用户在分享你的内容时,就能看到一个专业、美观、信息完整的预览卡片,大大提升了点击率和分享意愿。</p>
    <p><span>立即学习</span>“<a href="https://pan.quark.cn/s/cb6835dc7db1" style="text-decoration: underline !important; color: blue; font-weight: bolder;" rel="nofollow" target="_blank">前端免费学习笔记(深入)</a>”;</p>
    <p>常见的误区呢,我见过不少:</p>
    <ol>
    <li>
    <strong>图片尺寸不对劲:</strong> <pre class="brush:php;toolbar:false;">og:image</pre>的图片尺寸太小,或者比例不协调。社交媒体平台有自己的图片裁剪逻辑,如果你的图不符合规范,很可能被裁掉关键部分,甚至直接不显示。推荐1200x630px,这是一个比较通用的黄金比例。</li>
    <li>
    <strong><pre class="brush:php;toolbar:false;">og:url</pre>指向错误:</strong> 有时候会把测试环境的URL放进去,或者URL不带<pre class="brush:php;toolbar:false;">https</pre>,导致分享时出现问题。确保<pre class="brush:php;toolbar:false;">og:url</pre>是你的内容规范、可访问的最终URL。</li>
    <li>
    <strong>标题和描述太长:</strong> 社交媒体平台对预览文字长度有限制。如果你的<pre class="brush:php;toolbar:false;">og:title</pre>或<pre class="brush:php;toolbar:false;">og:description</pre>过长,它们会被截断,影响信息传达。简洁明了,抓住重点才是王道。</li>
    <li>
    <strong>忘记更新:</strong> 内容更新了,但OG标签里的标题、描述、图片没有同步更新。这会导致分享出去的还是旧内容,让人摸不着头脑。</li>
    </ol>
    <h3>超越基础:不同内容类型与平台的Open Graph深度优化</h3>
    <p>Open Graph不仅仅是<pre class="brush:php;toolbar:false;">title</pre>、<pre class="brush:php;toolbar:false;">description</pre>、<pre class="brush:php;toolbar:false;">image</pre>那么简单。它的<pre class="brush:php;toolbar:false;">og:type</pre>属性实际上定义了一套更细致的规范,让你能更精确地描述你的内容。比如,如果你发布的是一篇文章,你可以使用<pre class="brush:php;toolbar:false;">og:type="article"</pre>,然后添加<pre class="brush:php;toolbar:false;">article:author</pre>(作者)、<pre class="brush:php;toolbar:false;">article:published_time</pre>(发布时间)、<pre class="brush:php;toolbar:false;">article:modified_time</pre>(修改时间)、<pre class="brush:php;toolbar:false;">article:section</pre>(文章所属分类)、<pre class="brush:php;toolbar:false;">article:tag</pre>(标签)等属性。这些额外的信息能帮助平台更好地理解你的内容,并在某些情况下提供更丰富的展示。</p><div class="aritcle_card flexRow">
    							<div class="artcardd flexRow">
    								<a class="aritcle_card_img" href="/xiazai/sucai/3261" title="扁平化医疗专业人员矢量插画"><img
    										src="https://img.php.cn/upload/webpage/000/000/004/175703400578800.jpg" alt="扁平化医疗专业人员矢量插画"></a>
    								<div class="aritcle_card_info flexColumn">
    									<a href="/xiazai/sucai/3261" title="扁平化医疗专业人员矢量插画">扁平化医疗专业人员矢量插画</a>
    									<p>扁平化医疗专业人员矢量插画适用于医疗保健品牌宣传(医疗保健机构的品牌宣传材料,如海报、传单、广告等)、教育性儿童图书(向儿童介绍健康和医疗知识的图书中作为插图)、医院或诊所内部标识(医院或诊所的内部导航标识、科室指示牌等)、卫生教育课程(卫生教育课程的教材、活动手册或幻灯片中的视觉元素)、儿童医疗设施(儿童医院或儿科诊室的装饰和环境布置)、公共医疗卫生宣传、社交媒体健康宣传(社交媒体上分享的健康小</p>
    								</div>
    								<a href="/xiazai/sucai/3261" title="扁平化医疗专业人员矢量插画" class="aritcle_card_btn flexRow flexcenter"><b></b><span>下载</span> </a>
    							</div>
    						</div>
    <p>再比如,如果是视频内容,你可以设置<pre class="brush:php;toolbar:false;">og:type="video.movie"</pre>,然后加上<pre class="brush:php;toolbar:false;">video:actor</pre>、<pre class="brush:php;toolbar:false;">video:director</pre>、<pre class="brush:php;toolbar:false;">video:duration</pre>等。<a style="color:#f60; text-decoration:underline;" title="音乐" href="https://www.php.cn/zt/18209.html" target="_blank">音乐</a>内容也有<pre class="brush:php;toolbar:false;">music.song</pre>、<pre class="brush:php;toolbar:false;">music.album</pre>等类型,并可添加艺术家、专辑、时长等信息。这些深度属性的使用,能让你的内容在某些平台上获得更具沉浸感的体验。</p>
    <p>除了Facebook主导的Open Graph协议,Twitter有自己的<strong>Twitter Cards</strong>。虽然Twitter Card标签和OG标签有很多重叠,但为了在Twitter上达到最佳效果,你最好也设置它们。最常见的<pre class="brush:php;toolbar:false;">twitter:card</pre>类型是<pre class="brush:php;toolbar:false;">summary</pre>(小图加文字)和<pre class="brush:php;toolbar:false;">summary_large_image</pre>(大图加文字)。其他如<pre class="brush:php;toolbar:false;">twitter:site</pre>(网站的Twitter账号)、<pre class="brush:php;toolbar:false;">twitter:creator</pre>(作者的Twitter账号)等也很有用。它们的设置方式和OG标签类似,只是属性名以<pre class="brush:php;toolbar:false;">twitter:</pre>开头。LinkedIn、Pinterest等平台虽然也支持OG,但它们各自也有一些独特的优化建议,比如Pinterest更看重高分辨率的垂直图片。</p>
    <p>所以,针对不同的内容类型和目标社交媒体平台,你需要做一些定制化的思考。这不是一劳永逸的事情,而是需要根据实际情况灵活调整的策略。</p>
    <h3>分享前必看:如何检查和调试你的Open Graph设置?</h3>
    <p>当你费尽心思设置好Open Graph标签后,最关键的一步就是——验证它是否真的生效了。毕竟,谁也不想辛辛苦苦一番,结果发现白忙活一场。幸运的是,主流的社交媒体平台都提供了官方的调试<a style="color:#f60; text-decoration:underline;" title="工具" href="https://www.php.cn/zt/16887.html" target="_blank">工具</a>,它们是你的好帮手。</p>
    <ol>
    <li>
    <strong>Facebook Sharing Debugger:</strong> 这是最常用也是最全面的工具之一。你只需输入你的页面URL,它就会抓取你的页面,并显示Facebook如何解析你的OG标签,包括预览图、标题、描述等。如果有什么错误或警告,它也会明确指出。最棒的是,它还能帮你清除缓存,强制Facebook重新抓取你的页面,这对于你修改了OG标签但分享预览没更新的情况尤其有用。</li>
    <li>
    <strong>Twitter Card Validator:</strong> 顾名思义,这是Twitter官方提供的验证工具。和Facebook的调试器类似,输入URL后,它会显示Twitter Card的预览效果,并报告任何配置问题。</li>
    <li>
    <strong>LinkedIn Post Inspector:</strong> LinkedIn也有自己的调试工具。虽然功能可能不如Facebook和Twitter的那么丰富,但它也能让你看到LinkedIn如何解析你的页面,确保在职场社交平台上你的内容也能以最佳状态呈现。</li>
    </ol>
    <p>除了这些官方工具,还有一些通用的建议:</p>
    <ul>
    <li>
    <strong><a style="color:#f60; text-decoration:underline;" title="浏览器" href="https://www.php.cn/zt/16180.html" target="_blank">浏览器</a>开发者工具:</strong> 在本地开发时,你可以直接查看页面的源代码,检查<pre class="brush:php;toolbar:false;"><head></pre>部分是否包含了正确的OG <pre class="brush:php;toolbar:false;">meta</pre>标签。</li>
    <li>
    <strong>缓存问题:</strong> 社交媒体平台为了效率,会对已抓取的内容进行缓存。这意味着即使你修改了OG标签,分享时可能仍然显示旧的预览。这时候,使用调试工具的“清除缓存”或“重新抓取”功能就显得尤为重要。</li>
    <li>
    <strong>图片CDN:</strong> 如果你的<pre class="brush:php;toolbar:false;">og:image</pre>使用了CDN(内容分发网络),确保CDN的配置是正确的,图片是可公开访问的,并且没有设置任何阻止社交媒体<a style="color:#f60; text-decoration:underline;" title="爬虫" href="https://www.php.cn/zt/19377.html" target="_blank">爬虫</a>抓取的头部信息。</li>
    </ul>
    <p>调试过程可能会遇到一些小挫折,比如图片加载失败、描述被截断等。不要气馁,根据调试工具的反馈,一步步调整你的OG标签,直到达到你满意的效果。这就像调校一台精密的仪器,需要耐心和细致。</p>					</div>
    					<div class="artmoreart ">
    													<div class="artdp artptit"><span></span>
    								<p>相关文章</p>
    							</div>
    							<div class="artmores flexColumn">
    																	<a class="artmrlis flexRow" href="/faq/1966742.html" title="HTML 嵌套列表中序号不连续?正确嵌套结构与 CSS 样式应用指南"><b></b>
    										<p class="overflowclass">HTML 嵌套列表中序号不连续?正确嵌套结构与 CSS 样式应用指南</p>
    									</a>
    																	<a class="artmrlis flexRow" href="/faq/1966002.html" title="如何用 HTML 和 JavaScript 构建可验证答案的在线测验系统"><b></b>
    										<p class="overflowclass">如何用 HTML 和 JavaScript 构建可验证答案的在线测验系统</p>
    									</a>
    																	<a class="artmrlis flexRow" href="/faq/1965654.html" title="Bootstrap 5 Carousel 样式不生效的常见原因及解决方案"><b></b>
    										<p class="overflowclass">Bootstrap 5 Carousel 样式不生效的常见原因及解决方案</p>
    									</a>
    																	<a class="artmrlis flexRow" href="/faq/1965351.html" title="Bootstrap Carousel 样式不生效?正确选择器与结构是关键"><b></b>
    										<p class="overflowclass">Bootstrap Carousel 样式不生效?正确选择器与结构是关键</p>
    									</a>
    																	<a class="artmrlis flexRow" href="/faq/1964337.html" title="动态表单流程控制:基于选择联动更新HTML文本与选项"><b></b>
    										<p class="overflowclass">动态表单流程控制:基于选择联动更新HTML文本与选项</p>
    									</a>
    															</div>
    													<div class="aritcle_card flexRow">
    							<div class="artcardd flexRow">
    								<a class="aritcle_card_img" href="https://pan.quark.cn/s/f4eedefabd61" title="HTML速学教程(入门课程)"><img
    										src="https://img.php.cn/upload/Recdownload/000/000/085/66723a3016a41308.jpg" alt="HTML速学教程(入门课程)"></a>
    								<div class="aritcle_card_info flexColumn">
    									<a href="https://pan.quark.cn/s/f4eedefabd61" title="HTML速学教程(入门课程)">HTML速学教程(入门课程)</a>
    									<p>HTML怎么学习?HTML怎么入门?HTML在哪学?HTML怎么学才快?不用担心,这里为大家提供了HTML速学教程(入门课程),有需要的小伙伴保存下载就能学习啦!</p>
    								</div>
    								<a href="https://pan.quark.cn/s/f4eedefabd61" title="HTML速学教程(入门课程)" class="aritcle_card_btn flexRow flexcenter"><b></b><span>下载</span> </a>
    							</div>
    						</div>							<div class="artmoretabs flexRow">
    								<p>相关标签:</p>
    								<div class="mtbs flexRow">
    									<a class="mtbsa flexRow" onclick="hits_log(2,'www',this);" href-data="/zt/15726.html" target="_blank">word</a> <a class="mtbsa flexRow" onclick="hits_log(2,'www',this);" href-data="/zt/15763.html" target="_blank">html</a> <a class="mtbsa flexRow" onclick="hits_log(2,'www',this);" href-data="/zt/16063.html" target="_blank">微信</a> <a class="mtbsa flexRow" onclick="hits_log(2,'www',this);" href-data="/zt/16180.html" target="_blank">浏览器</a> <a class="mtbsa flexRow" onclick="hits_log(2,'www',this);" href-data="/zt/16186.html" target="_blank">app</a> <a class="mtbsa flexRow" onclick="hits_log(2,'www',this);" href-data="/zt/16297.html" target="_blank">facebook</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/18209.html" target="_blank">音乐</a> <a class="mtbsa flexRow" onclick="hits_log(2,'www',this);" href-data="/zt/19377.html" target="_blank">爬虫</a> <a class="mtbsa flexRow" onclick="hits_log(2,'www',this);" href-data="/zt/21002.html" target="_blank">twitter</a> <a class="mtbsa flexRow" onclick="hits_log(2,'www',this);" href-data="/search?q=html" target="_blank">html</a> <a class="mtbsa flexRow" onclick="hits_log(2,'www',this);" href-data="/search?q=https" target="_blank">https</a>								</div>
    							</div>
    						
    						<p class="statement">本站声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn</p>
    						<div class="lastanext flexRow">
    													<a class="lastart flexRow" href="/faq/1526103.html" title="HTML弹窗怎么设置_SEO友好的弹窗实现方案"><span>上一篇:</span>HTML弹窗怎么设置_SEO友好的弹窗实现方案</a>
    													<a class="nextart flexRow" href="/faq/1526183.html" title="动态生成限定年份范围的下拉选择框:JavaScript/jQuery 实现指南"><span>下一篇:</span>动态生成限定年份范围的下拉选择框:JavaScript/jQuery 实现指南</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/1967527.html" title="PHP5.5与PHP7.2高性能计算函数差异_老版本升级注意细节【说明】"><b></b>
    												<p class="overflowclass">PHP5.5与PHP7.2高性能计算函数差异_老版本升级注意细节【说明】</p>
    											</a>
    											<div class="authtime flexRow"><b></b>
    												<p>2026-01-11 21:27</p>
    											</div>
    										</div>
    								</div>
    																	<div class="authlist flexColumn">
    										<div class="autharts flexRow">
    											<a class="autharta flexRow " href="/faq/1967531.html" title="文心一言如何定制个性化学习计划_文心一言学习计划制定法【方法】"><b></b>
    												<p class="overflowclass">文心一言如何定制个性化学习计划_文心一言学习计划制定法【方法】</p>
    											</a>
    											<div class="authtime flexRow"><b></b>
    												<p>2026-01-11 21:29</p>
    											</div>
    										</div>
    								</div>
    																	<div class="authlist flexColumn">
    										<div class="autharts flexRow">
    											<a class="autharta flexRow " href="/faq/1967542.html" title="支付宝转账如何查对方详情_支付宝查收款人【贴士】"><b></b>
    												<p class="overflowclass">支付宝转账如何查对方详情_支付宝查收款人【贴士】</p>
    											</a>
    											<div class="authtime flexRow"><b></b>
    												<p>2026-01-11 21:31</p>
    											</div>
    										</div>
    								</div>
    																	<div class="authlist flexColumn">
    										<div class="autharts flexRow">
    											<a class="autharta flexRow " href="/faq/1967549.html" title="12306APP如何查看电子客票 铁路12306APP查电子客票方法【技巧】"><b></b>
    												<p class="overflowclass">12306APP如何查看电子客票 铁路12306APP查电子客票方法【技巧】</p>
    											</a>
    											<div class="authtime flexRow"><b></b>
    												<p>2026-01-11 21:32</p>
    											</div>
    										</div>
    								</div>
    																	<div class="authlist flexColumn">
    										<div class="autharts flexRow">
    											<a class="autharta flexRow " href="/faq/1967559.html" title="悟空浏览器如何设置隐私浏览保护_悟空浏览器隐私设防法【守护】"><b></b>
    												<p class="overflowclass">悟空浏览器如何设置隐私浏览保护_悟空浏览器隐私设防法【守护】</p>
    											</a>
    											<div class="authtime flexRow"><b></b>
    												<p>2026-01-11 21:35</p>
    											</div>
    										</div>
    								</div>
    																	<div class="authlist flexColumn">
    										<div class="autharts flexRow">
    											<a class="autharta flexRow " href="/faq/1967560.html" title="医保共济能报销哪些费用_医保共济报销项目清单【汇总】"><b></b>
    												<p class="overflowclass">医保共济能报销哪些费用_医保共济报销项目清单【汇总】</p>
    											</a>
    											<div class="authtime flexRow"><b></b>
    												<p>2026-01-11 21:35</p>
    											</div>
    										</div>
    								</div>
    																	<div class="authlist flexColumn">
    										<div class="autharts flexRow">
    											<a class="autharta flexRow " href="/faq/1967607.html" title="Kimi怎样快速总结书籍精华_Kimi读书摘要窍门【妙招】"><b></b>
    												<p class="overflowclass">Kimi怎样快速总结书籍精华_Kimi读书摘要窍门【妙招】</p>
    											</a>
    											<div class="authtime flexRow"><b></b>
    												<p>2026-01-11 21:49</p>
    											</div>
    										</div>
    								</div>
    																	<div class="authlist flexColumn">
    										<div class="autharts flexRow">
    											<a class="autharta flexRow " href="/faq/1967625.html" title="AO3中文用户专属镜像站 Archive of Our Own本地化入口"><b></b>
    												<p class="overflowclass">AO3中文用户专属镜像站 Archive of Our Own本地化入口</p>
    											</a>
    											<div class="authtime flexRow"><b></b>
    												<p>2026-01-11 21:54</p>
    											</div>
    										</div>
    								</div>
    																	<div class="authlist flexColumn">
    										<div class="autharts flexRow">
    											<a class="autharta flexRow " href="/faq/1967642.html" title="百度Ai搜索如何识别虚假信息_百度Ai搜索辨虚假窍门【攻略】"><b></b>
    												<p class="overflowclass">百度Ai搜索如何识别虚假信息_百度Ai搜索辨虚假窍门【攻略】</p>
    											</a>
    											<div class="authtime flexRow"><b></b>
    												<p>2026-01-11 21:59</p>
    											</div>
    										</div>
    								</div>
    																	<div class="authlist flexColumn">
    										<div class="autharts flexRow">
    											<a class="autharta flexRow " href="/faq/1967646.html" title="悟道如何训练专属问答模型_悟道微调模型方法【要点】"><b></b>
    												<p class="overflowclass">悟道如何训练专属问答模型_悟道微调模型方法【要点】</p>
    											</a>
    											<div class="authtime flexRow"><b></b>
    												<p>2026-01-11 22:00</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_mfit,h_70,w_70,limit_0" 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_mfit,h_70,w_70,limit_0" 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_mfit,h_70,w_70,limit_0" 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_mfit,h_70,w_70,limit_0" 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_mfit,h_70,w_70,limit_0" 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_mfit,h_70,w_70,limit_0" 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_mfit,h_70,w_70,limit_0" 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_mfit,h_70,w_70,limit_0" 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_mfit,h_70,w_70,limit_0" 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/htmlbq" class="aClass flexRow hotzta" title="html版权符号"><img
    										src="https://img.php.cn/upload/subject/202306/14/2023061417195694847.jpg?x-oss-process=image/resize,m_mfit,h_75,w_120,limit_0" alt="html版权符号" class="hotztaimg"
    										onerror="this.src='/static/lhimages/moren/morentu.png'"></a>
    								<div class="hotztright flexColumn">
    									<a target="_blank" href="/faq/htmlbq" class="aClass flexRow hotztra overflowclass" title="html版权符号">html版权符号</a>
    									<p class="aClass flexRow hotztrp overflowclass">html版权符号是“©”,可以在html源文件中直接输入或者从word中复制粘贴过来,php中文网还为大家带来html的相关下载资源、相关课程以及相关文章等内容,供大家免费下载使用。</p>
    									<div class="hotztrdown flexRow">
    										<div class="htztdsee flexRow"> <b></b>
    											<p class="">605</p>
    										</div>
    										<div class="htztdTime flexRow"> <b></b>
    											<p>2023.06.14</p>
    										</div>
    									</div>
    								</div>
    							</div>
    													<div class="hotztlls flexRow">
    								<a target="_blank" href="/faq/htmlzxbjq" class="aClass flexRow hotzta" title="html在线编辑器"><img
    										src="https://img.php.cn/upload/subject/202306/21/2023062118054418106.jpg?x-oss-process=image/resize,m_mfit,h_75,w_120,limit_0" alt="html在线编辑器" class="hotztaimg"
    										onerror="this.src='/static/lhimages/moren/morentu.png'"></a>
    								<div class="hotztright flexColumn">
    									<a target="_blank" href="/faq/htmlzxbjq" class="aClass flexRow hotztra overflowclass" title="html在线编辑器">html在线编辑器</a>
    									<p class="aClass flexRow hotztrp overflowclass">html在线编辑器是用于在线编辑的工具,编辑的内容是基于HTML的文档。它经常被应用于留言板留言、论坛发贴、Blog编写日志或等需要用户输入普通HTML的地方,是Web应用的常用模块之一。php中文网为大家带来了html在线编辑器的相关教程、以及相关文章等内容,供大家免费下载使用。</p>
    									<div class="hotztrdown flexRow">
    										<div class="htztdsee flexRow"> <b></b>
    											<p class="">644</p>
    										</div>
    										<div class="htztdTime flexRow"> <b></b>
    											<p>2023.06.21</p>
    										</div>
    									</div>
    								</div>
    							</div>
    													<div class="hotztlls flexRow">
    								<a target="_blank" href="/faq/htmlwyzz" class="aClass flexRow hotzta" title="html网页制作"><img
    										src="https://img.php.cn/upload/subject/202307/31/2023073113382132316.jpg?x-oss-process=image/resize,m_mfit,h_75,w_120,limit_0" alt="html网页制作" class="hotztaimg"
    										onerror="this.src='/static/lhimages/moren/morentu.png'"></a>
    								<div class="hotztright flexColumn">
    									<a target="_blank" href="/faq/htmlwyzz" class="aClass flexRow hotztra overflowclass" title="html网页制作">html网页制作</a>
    									<p class="aClass flexRow hotztrp overflowclass">html网页制作是指使用超文本标记语言来设计和创建网页的过程,html是一种标记语言,它使用标记来描述文档结构和语义,并定义了网页中的各种元素和内容的呈现方式。本专题为大家提供html网页制作的相关的文章、下载、课程内容,供大家免费下载体验。</p>
    									<div class="hotztrdown flexRow">
    										<div class="htztdsee flexRow"> <b></b>
    											<p class="">466</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/htmlkg" class="aClass flexRow hotzta" title="html空格"><img
    										src="https://img.php.cn/upload/subject/202308/01/2023080110215221612.jpg?x-oss-process=image/resize,m_mfit,h_75,w_120,limit_0" alt="html空格" class="hotztaimg"
    										onerror="this.src='/static/lhimages/moren/morentu.png'"></a>
    								<div class="hotztright flexColumn">
    									<a target="_blank" href="/faq/htmlkg" class="aClass flexRow hotztra overflowclass" title="html空格">html空格</a>
    									<p class="aClass flexRow hotztrp overflowclass">html空格是一种用于在网页中添加间隔和对齐文本的特殊字符,被用于在网页中插入额外的空间,以改变元素之间的排列和对齐方式。本专题为大家提供html空格的相关的文章、下载、课程内容,供大家免费下载体验。</p>
    									<div class="hotztrdown flexRow">
    										<div class="htztdsee flexRow"> <b></b>
    											<p class="">245</p>
    										</div>
    										<div class="htztdTime flexRow"> <b></b>
    											<p>2023.08.01</p>
    										</div>
    									</div>
    								</div>
    							</div>
    													<div class="hotztlls flexRow">
    								<a target="_blank" href="/faq/htmlssm" class="aClass flexRow hotzta" title="html是什么"><img
    										src="https://img.php.cn/upload/subject/202308/11/2023081110034851167.jpg?x-oss-process=image/resize,m_mfit,h_75,w_120,limit_0" alt="html是什么" class="hotztaimg"
    										onerror="this.src='/static/lhimages/moren/morentu.png'"></a>
    								<div class="hotztright flexColumn">
    									<a target="_blank" href="/faq/htmlssm" class="aClass flexRow hotztra overflowclass" title="html是什么">html是什么</a>
    									<p class="aClass flexRow hotztrp overflowclass">HTML是一种标准标记语言,用于创建和呈现网页的结构和内容,是互联网发展的基石,为网页开发提供了丰富的功能和灵活性。本专题为大家提供html相关的各种文章、以及下载和课程。</p>
    									<div class="hotztrdown flexRow">
    										<div class="htztdsee flexRow"> <b></b>
    											<p class="">2882</p>
    										</div>
    										<div class="htztdTime flexRow"> <b></b>
    											<p>2023.08.11</p>
    										</div>
    									</div>
    								</div>
    							</div>
    													<div class="hotztlls flexRow">
    								<a target="_blank" href="/faq/htmlztdxzmsz" class="aClass flexRow hotzta" title="html字体大小怎么设置"><img
    										src="https://img.php.cn/upload/subject/202308/11/2023081110511917388.jpg?x-oss-process=image/resize,m_mfit,h_75,w_120,limit_0" alt="html字体大小怎么设置" class="hotztaimg"
    										onerror="this.src='/static/lhimages/moren/morentu.png'"></a>
    								<div class="hotztright flexColumn">
    									<a target="_blank" href="/faq/htmlztdxzmsz" class="aClass flexRow hotztra overflowclass" title="html字体大小怎么设置">html字体大小怎么设置</a>
    									<p class="aClass flexRow hotztrp overflowclass">在网页设计中,字体大小的选择是至关重要的。合理的字体大小不仅可以提升网页的可读性,还能够影响用户对网页整体布局的感知。php中文网将介绍一些常用的方法和技巧,帮助您在HTML中设置合适的字体大小。</p>
    									<div class="hotztrdown flexRow">
    										<div class="htztdsee flexRow"> <b></b>
    											<p class="">503</p>
    										</div>
    										<div class="htztdTime flexRow"> <b></b>
    											<p>2023.08.11</p>
    										</div>
    									</div>
    								</div>
    							</div>
    													<div class="hotztlls flexRow">
    								<a target="_blank" href="/faq/htmlztxt" class="aClass flexRow hotzta" title="html转txt"><img
    										src="https://img.php.cn/upload/subject/202308/31/2023083109262991103.jpg?x-oss-process=image/resize,m_mfit,h_75,w_120,limit_0" alt="html转txt" class="hotztaimg"
    										onerror="this.src='/static/lhimages/moren/morentu.png'"></a>
    								<div class="hotztright flexColumn">
    									<a target="_blank" href="/faq/htmlztxt" class="aClass flexRow hotztra overflowclass" title="html转txt">html转txt</a>
    									<p class="aClass flexRow hotztrp overflowclass">html转txt的方法有使用文本编辑器、使用在线转换工具和使用Python编程。本专题为大家提供html转txt相关的文章、下载、课程内容,供大家免费下载体验。</p>
    									<div class="hotztrdown flexRow">
    										<div class="htztdsee flexRow"> <b></b>
    											<p class="">310</p>
    										</div>
    										<div class="htztdTime flexRow"> <b></b>
    											<p>2023.08.31</p>
    										</div>
    									</div>
    								</div>
    							</div>
    													<div class="hotztlls flexRow">
    								<a target="_blank" href="/faq/htmlwbkdmzmx" class="aClass flexRow hotzta" title="html文本框代码怎么写"><img
    										src="https://img.php.cn/upload/subject/202309/01/2023090116144456829.jpg?x-oss-process=image/resize,m_mfit,h_75,w_120,limit_0" alt="html文本框代码怎么写" class="hotztaimg"
    										onerror="this.src='/static/lhimages/moren/morentu.png'"></a>
    								<div class="hotztright flexColumn">
    									<a target="_blank" href="/faq/htmlwbkdmzmx" class="aClass flexRow hotztra overflowclass" title="html文本框代码怎么写">html文本框代码怎么写</a>
    									<p class="aClass flexRow hotztrp overflowclass">html文本框代码:1、单行文本框【<input type="text" style="height:..;width:..;" />】;2、多行文本框【textarea style=";height:;"></textare】。</p>
    									<div class="hotztrdown flexRow">
    										<div class="htztdsee flexRow"> <b></b>
    											<p class="">423</p>
    										</div>
    										<div class="htztdTime flexRow"> <b></b>
    											<p>2023.09.01</p>
    										</div>
    									</div>
    								</div>
    							</div>
    													<div class="hotztlls flexRow">
    								<a target="_blank" href="/faq/cjjzlkfkjhz" class="aClass flexRow hotzta" title="c++主流开发框架汇总"><img
    										src="https://img.php.cn/upload/subject/202601/09/2026010919253368098.jpg?x-oss-process=image/resize,m_mfit,h_75,w_120,limit_0" alt="c++主流开发框架汇总" class="hotztaimg"
    										onerror="this.src='/static/lhimages/moren/morentu.png'"></a>
    								<div class="hotztright flexColumn">
    									<a target="_blank" href="/faq/cjjzlkfkjhz" class="aClass flexRow hotztra overflowclass" title="c++主流开发框架汇总">c++主流开发框架汇总</a>
    									<p class="aClass flexRow hotztrp overflowclass">本专题整合了c++开发框架推荐,阅读专题下面的文章了解更多详细内容。</p>
    									<div class="hotztrdown flexRow">
    										<div class="htztdsee flexRow"> <b></b>
    											<p class="">80</p>
    										</div>
    										<div class="htztdTime flexRow"> <b></b>
    											<p>2026.01.09</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="jQuery移动端金额充值表单代码" href="/xiazai/js/8405"><span>[表单按钮]</span><span>jQuery移动端金额充值表单代码</span></a>
    									</div>
    								</li>
    															<li>
    									<div class="wzrfourli flexRow">
    										<b></b>
    										<a target="_blank" title="JS图片滚动切换数字时钟代码" href="/xiazai/js/8404"><span>[窗口特效]</span><span>JS图片滚动切换数字时钟代码</span></a>
    									</div>
    								</li>
    															<li>
    									<div class="wzrfourli flexRow">
    										<b></b>
    										<a target="_blank" title="CSS3实现鼠标悬停放大照片墙特效" href="/xiazai/js/8403"><span>[图片特效]</span><span>CSS3实现鼠标悬停放大照片墙特效</span></a>
    									</div>
    								</li>
    															<li>
    									<div class="wzrfourli flexRow">
    										<b></b>
    										<a target="_blank" title="jQuery表单浮动标签设计效果代码" href="/xiazai/js/8402"><span>[表单按钮]</span><span>jQuery表单浮动标签设计效果代码</span></a>
    									</div>
    								</li>
    															<li>
    									<div class="wzrfourli flexRow">
    										<b></b>
    										<a target="_blank" title="CSS网页悬浮在线人工客服特效代码下载" href="/xiazai/js/8401"><span>[窗口特效]</span><span>CSS网页悬浮在线人工客服特效代码下载</span></a>
    									</div>
    								</li>
    															<li>
    									<div class="wzrfourli flexRow">
    										<b></b>
    										<a target="_blank" title="jquery手动自动图片切换" href="/xiazai/js/8400"><span>[图片特效]</span><span>jquery手动自动图片切换</span></a>
    									</div>
    								</li>
    															<li>
    									<div class="wzrfourli flexRow">
    										<b></b>
    										<a target="_blank" title="typed.js实现编辑器的打字效果" href="/xiazai/js/8399"><span>[文字特效]</span><span>typed.js实现编辑器的打字效果</span></a>
    									</div>
    								</li>
    															<li>
    									<div class="wzrfourli flexRow">
    										<b></b>
    										<a target="_blank" title="3d垂直滚动轮播效果下载" href="/xiazai/js/8398"><span>[窗口特效]</span><span>3d垂直滚动轮播效果下载</span></a>
    									</div>
    								</li>
    															<li>
    									<div class="wzrfourli flexRow">
    										<b></b>
    										<a target="_blank" title="纯css3霓虹灯文字渐变特效" href="/xiazai/js/8397"><span>[文字特效]</span><span>纯css3霓虹灯文字渐变特效</span></a>
    									</div>
    								</li>
    															<li>
    									<div class="wzrfourli flexRow">
    										<b></b>
    										<a target="_blank" title="jQuery鼠标点击弹出登录框代码" href="/xiazai/js/8396"><span>[表单按钮]</span><span>jQuery鼠标点击弹出登录框代码</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/4178" title="2026国潮风祥云扇子矢量素材"><span>[网站素材]</span><span>2026国潮风祥云扇子矢量素材</span> </a>
    									</div>
    								</li>
    															<li>
    									<div class="wzrfourli flexRow">
    										<b></b>
    										<a target="_blank" href="/xiazai/sucai/4177" title="抽象涂鸦烟花新年贺卡矢量模板"><span>[网站素材]</span><span>抽象涂鸦烟花新年贺卡矢量模板</span> </a>
    									</div>
    								</li>
    															<li>
    									<div class="wzrfourli flexRow">
    										<b></b>
    										<a target="_blank" href="/xiazai/sucai/4176" title="蛋糕披萨鸡腿美食折扣海报设计下载"><span>[网站素材]</span><span>蛋糕披萨鸡腿美食折扣海报设计下载</span> </a>
    									</div>
    								</li>
    															<li>
    									<div class="wzrfourli flexRow">
    										<b></b>
    										<a target="_blank" href="/xiazai/sucai/4175" title="超市购物活动宣传海报PSD模板下载"><span>[网站素材]</span><span>超市购物活动宣传海报PSD模板下载</span> </a>
    									</div>
    								</li>
    															<li>
    									<div class="wzrfourli flexRow">
    										<b></b>
    										<a target="_blank" href="/xiazai/sucai/4174" title="2026步步高升竹子背景矢量素材"><span>[网站素材]</span><span>2026步步高升竹子背景矢量素材</span> </a>
    									</div>
    								</li>
    															<li>
    									<div class="wzrfourli flexRow">
    										<b></b>
    										<a target="_blank" href="/xiazai/sucai/4173" title="2026极简新年贺卡矢量模板"><span>[网站素材]</span><span>2026极简新年贺卡矢量模板</span> </a>
    									</div>
    								</li>
    															<li>
    									<div class="wzrfourli flexRow">
    										<b></b>
    										<a target="_blank" href="/xiazai/sucai/4172" title="2026立体建筑迷宫矢量素材"><span>[网站素材]</span><span>2026立体建筑迷宫矢量素材</span> </a>
    									</div>
    								</li>
    															<li>
    									<div class="wzrfourli flexRow">
    										<b></b>
    										<a target="_blank" href="/xiazai/sucai/4171" title="挂耳耳机折扣海报设计源文件下载"><span>[网站素材]</span><span>挂耳耳机折扣海报设计源文件下载</span> </a>
    									</div>
    								</li>
    															<li>
    									<div class="wzrfourli flexRow">
    										<b></b>
    										<a target="_blank" href="/xiazai/sucai/4170" title="2026新年派对香槟庆祝矢量素材"><span>[网站素材]</span><span>2026新年派对香槟庆祝矢量素材</span> </a>
    									</div>
    								</li>
    															<li>
    									<div class="wzrfourli flexRow">
    										<b></b>
    										<a target="_blank" href="/xiazai/sucai/4169" title="手机促销折扣海报设计素材下载"><span>[网站素材]</span><span>手机促销折扣海报设计素材下载</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="扁平化医疗专业人员矢量插画" href="/xiazai/sucai/3261">扁平化医疗专业人员矢量插画</a></div>
    											<div class="xgwzlid flexRow"><b></b><a target="_blank" title="可爱护士形象矢量图矢量素材" href="/xiazai/sucai/3160">可爱护士形象矢量图矢量素材</a></div>
    											<div class="xgwzlid flexRow"><b></b><a target="_blank" title="卡通风格医疗工作者插画矢量" href="/xiazai/sucai/3130">卡通风格医疗工作者插画矢量</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/1673.html" title="Bootstrap 5教程">
    									<img src="https://img.php.cn/upload/course/000/000/090/6899a24dcdf73781.png?x-oss-process=image/resize,m_mfit,h_75,w_120,limit_0" alt="Bootstrap 5教程" class="ristyAimg"
    										onerror="this.src='/static/mobimages/moren/morentu.png'">
    								</a>
    								<div class="ristyaRight flexColumn">
    									<a target="_blank" href="/course/1673.html" title="Bootstrap 5教程"
    										class="rirightp overflowclass">Bootstrap 5教程</a>
    
    									<div class="risrdown flexRow">
    										<p>共46课时 | 2.8万人学习</p>
    									</div>
    								</div>
    							</div>
    													<div  class="ristyA flexRow " >
    								<a target="_blank" href="/course/1672.html" title="AngularJS教程">
    									<img src="https://img.php.cn/upload/course/000/000/090/68998d18b4142615.png?x-oss-process=image/resize,m_mfit,h_75,w_120,limit_0" alt="AngularJS教程" class="ristyAimg"
    										onerror="this.src='/static/mobimages/moren/morentu.png'">
    								</a>
    								<div class="ristyaRight flexColumn">
    									<a target="_blank" href="/course/1672.html" title="AngularJS教程"
    										class="rirightp overflowclass">AngularJS教程</a>
    
    									<div class="risrdown flexRow">
    										<p>共24课时 | 2.5万人学习</p>
    									</div>
    								</div>
    							</div>
    													<div  class="ristyA flexRow " >
    								<a target="_blank" href="/course/1660.html" title="CSS教程">
    									<img src="https://img.php.cn/upload/course/000/000/090/68774990cfb6f919.jpg?x-oss-process=image/resize,m_mfit,h_75,w_120,limit_0" alt="CSS教程" class="ristyAimg"
    										onerror="this.src='/static/mobimages/moren/morentu.png'">
    								</a>
    								<div class="ristyaRight flexColumn">
    									<a target="_blank" href="/course/1660.html" title="CSS教程"
    										class="rirightp overflowclass">CSS教程</a>
    
    									<div class="risrdown flexRow">
    										<p>共754课时 | 18.4万人学习</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_mfit,h_86,w_140,limit_0" 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_mfit,h_86,w_140,limit_0" 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课时 | 151万人学习</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_mfit,h_86,w_140,limit_0" 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.3万人学习</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_mfit,h_86,w_140,limit_0" 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_mfit,h_86,w_140,limit_0" 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_mfit,h_86,w_140,limit_0" 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="HTML5怎样适配OPPO Find手机_HTML5适配Find X系列的技巧【详解】" href="/faq/1967655.html">HTML5怎样适配OPPO Find手机_HTML5适配Find X系列的技巧【详解】</a></div>
    													<div class="xgwzlid flexRow"><b></b><a target="_blank" title="学习如何html_HTML系统学习路径与入门技巧【详解】" href="/faq/1967636.html">学习如何html_HTML系统学习路径与入门技巧【详解】</a></div>
    													<div class="xgwzlid flexRow"><b></b><a target="_blank" title="HTML5结构标签属性有哪些_常用全局属性及作用【汇总】" href="/faq/1967583.html">HTML5结构标签属性有哪些_常用全局属性及作用【汇总】</a></div>
    													<div class="xgwzlid flexRow"><b></b><a target="_blank" title="HTML5布局用div还是section_不同语义化标签在页面布局中的选择逻辑【指南】" href="/faq/1967492.html">HTML5布局用div还是section_不同语义化标签在页面布局中的选择逻辑【指南】</a></div>
    													<div class="xgwzlid flexRow"><b></b><a target="_blank" title="如何通过 URL 锚点控制页面内容的条件显示" href="/faq/1967379.html">如何通过 URL 锚点控制页面内容的条件显示</a></div>
    													<div class="xgwzlid flexRow"><b></b><a target="_blank" title="HTML5如何让文字对齐两端_justify两端对齐实现与兼容方案【解答】" href="/faq/1967376.html">HTML5如何让文字对齐两端_justify两端对齐实现与兼容方案【解答】</a></div>
    													<div class="xgwzlid flexRow"><b></b><a target="_blank" title="如何通过 URL 锚点控制页面内容的动态显示" href="/faq/1967362.html">如何通过 URL 锚点控制页面内容的动态显示</a></div>
    													<div class="xgwzlid flexRow"><b></b><a target="_blank" title="html5用fetch替代ajax读xml_现代api获取xml的简洁写法【说明】" href="/faq/1967342.html">html5用fetch替代ajax读xml_现代api获取xml的简洁写法【说明】</a></div>
    													<div class="xgwzlid flexRow"><b></b><a target="_blank" title="HTML5框架WebSocket怎么连接_实时通信建立步骤教程【操作】" href="/faq/1967338.html">HTML5框架WebSocket怎么连接_实时通信建立步骤教程【操作】</a></div>
    													<div class="xgwzlid flexRow"><b></b><a target="_blank" title="如何修复右侧圆形边框被内容遮挡的问题" href="/faq/1967336.html">如何修复右侧圆形边框被内容遮挡的问题</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-2026 <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=1526144&time=1768143851">
    </script>
    <script src="/static/ueditor/third-party/SyntaxHighlighter/shCore.js?1768143851"></script>
    <script>
    	article_status = "1522151";
    </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', '11']);
    		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>