当前位置:首页 > 文章列表 > 文章 > php教程 > PHP无数据库生成元数据方法

PHP无数据库生成元数据方法

2026-03-10 17:36:41 0浏览 收藏
本文揭秘了一种轻量高效的PHP开发技巧:无需数据库,仅通过精心设计的变量传递机制,在静态化站点中动态生成页面专属的SEO元数据(如标题、描述等),让企业简介页、产品单页或文档站也能拥有专业级的搜索引擎友好性与可访问性;核心在于利用PHP执行顺序,在页面顶部提前声明语义化变量,并由统一头部模板安全读取渲染,兼顾简洁性、可维护性与最佳实践。

如何在无数据库的PHP站点中动态生成页面元数据

本文介绍在不使用数据库的前提下,通过PHP变量传递机制,从页面内容中提取标题、描述等信息并动态注入HTML头部的元标签,实现SEO友好的静态化站点开发。

本文介绍在不使用数据库的前提下,通过PHP变量传递机制,从页面内容中提取标题、描述等信息并动态注入HTML头部的元标签,实现SEO友好的静态化站点开发。

在无数据库的轻量级PHP站点中(如企业简介页、产品单页或文档站),常需为每页设置独立的 、<meta name="description"> 等标签以提升可访问性与SEO效果。由于缺乏数据库支撑,关键在于<strong>利用PHP的作用域与执行顺序</strong>,在页面主体中提前声明语义化变量,并在头部文件(如 inc/head.php)中安全调用。</p><h3>核心思路:变量前置声明 + 头部动态渲染</h3><p>PHP脚本按从上到下的顺序执行。因此,必须在引入 head.php <strong>之前</strong>定义好页面专属变量。推荐采用「页面顶部声明 → 主体复用 → 头部渲染」三步法:</p><pre class="brush:php;toolbar:false"><?php // 页面顶部:声明页面级元数据变量(必须在 include head.php 前!) $page_title = '关于我们 - 专注Web开发十年'; $page_description = '我们提供高性能、可维护的PHP静态站点解决方案,无需数据库,开箱即用。'; $page_keywords = 'PHP, 静态站点, 无数据库, SEO优化'; ?> <?php include "inc/head.php" ?> <main> <article> <h1><?php echo htmlspecialchars($page_title); ?></h1> <div>这里是公司发展历程与核心团队介绍...</div> </article> </main> <?php include "inc/footer.php" ?></pre><p>对应地,inc/head.php 应设计为可读取这些变量的模板:</p><pre class="brush:php;toolbar:false"><!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title><?php echo htmlspecialchars($page_title ?? '默认站点名称'); ?>

⚠️ 关键注意事项

  • 声明顺序不可颠倒:$page_title 等变量必须在 include "inc/head.php" 之前定义,否则将触发 Undefined variable 警告;
  • 输出安全必做:始终使用 htmlspecialchars() 对变量进行转义,防止XSS攻击(尤其当内容含用户输入或特殊字符时);
  • 提供默认值:在 head.php 中使用空合并运算符 ?? 设置兜底值(如 $page_title ?? '首页'),避免未定义变量导致空白 ;</li><li><strong>结构一致性建议</strong>:可在每个页面顶部统一使用 require_once 'inc/page-config.php'; 加载标准化配置,便于后期维护与扩展。</li></ul><h3>进阶提示:支持多语言与Open Graph</h3><p>若需国际化,可基于 $_GET['lang'] 或子目录切换 $page_title_zh / $page_title_en;添加社交分享支持时,在 head.php 中追加:</p><pre class="brush:php;toolbar:false"><meta property="og:title" content="<?php echo htmlspecialchars($page_title); ?>"> <meta property="og:description" content="<?php echo htmlspecialchars($page_description); ?>"> <meta property="og:url" content="<?php echo htmlspecialchars($_SERVER['REQUEST_URI']); ?>"></pre><p>通过这种简洁可控的变量驱动模式,即使零数据库,也能构建出语义清晰、SEO就绪、易于维护的PHP静态站点。</p><p>以上就是本文的全部内容了,是否有顺利帮助你解决问题?若是能给你带来学习上的帮助,请大家多多支持golang学习网!更多关于文章的相关知识,也可关注golang学习网公众号。</p> </div> <div class="labsList"> </div> <div class="cateBox"> <div class="cateItem"> <a href="/article/525436.html" title="五一返程票技巧:精准锁定候补名额" class="img_box"> <img src="/uploads/20260310/177313539969afe62788c6f.png" onerror="this.onerror='',this.src='/assets/images/moren/morentu.png'" alt="五一返程票技巧:精准锁定候补名额">五一返程票技巧:精准锁定候补名额 </a> <dl> <dt class="lineOverflow"><a href="/article/525436.html" title="五一返程票技巧:精准锁定候补名额" class="aBlack">上一篇<i></i></a></dt> <dd class="lineTwoOverflow">五一返程票技巧:精准锁定候补名额</dd> </dl> </div> <div class="cateItem"> <a href="/article/525438.html" title="PHP8.2新特性有哪些?全面解析版本亮点" class="img_box"> <img src="/uploads/20260310/177313545769afe661812e2.jpg" onerror="this.onerror='',this.src='/assets/images/moren/morentu.png'" alt="PHP8.2新特性有哪些?全面解析版本亮点"> </a> <dl> <dt class="lineOverflow"><a href="/article/525438.html" class="aBlack" title="PHP8.2新特性有哪些?全面解析版本亮点">下一篇<i></i></a></dt> <dd class="lineTwoOverflow">PHP8.2新特性有哪些?全面解析版本亮点</dd> </dl> </div> </div> </div> </div> <div class="leftContBox pt0"> <div class="pdl20"> <div class="contTit"> <a href="/articlelist.html" class="more" title="查看更多">查看更多<i class="iconfont"></i></a> <div class="tit">最新文章</div> </div> </div> <ul class="newArticleList"> <li> <div class="contBox"> <a href="/article/619947.html" class="img_box" title="PHP Cookie 安全实战:HttpOnly、SameSite 和 Secure 这样配置"> <img src="/uploads/20260614/1781413008-php-cookie-guard-flow.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="PHP Cookie 安全实战:HttpOnly、SameSite 和 Secure 这样配置"> </a> <dl> <dd class="cont1"> <span> <a href="/articlelist/19_new_0_1.html" class="aLightGray" title="文章">文章</a> · <a href="/articlelist/84_new_0_1.html" class="aLightGray" title="php教程">php教程</a>   |  19小时前  |   <a href="/articletag/1433_new_0_1.html" class="aLightGray" title="PHP">PHP</a> · <a href="/articletag/4723_new_0_1.html" class="aLightGray" title="web安全">web安全</a> · <a href="/articletag/39782_new_0_1.html" class="aLightGray" title="php教程">php教程</a> · <a href="/articletag/39861_new_0_1.html" class="aLightGray" title="Cookie安全">Cookie安全</a> · <a href="/articletag/39862_new_0_1.html" class="aLightGray" title="登录态">登录态</a> · <a href="javascript:;" class="aLightGray" title="php">php</a> <a href="javascript:;" class="aLightGray" title="cookie">cookie</a> <a href="javascript:;" class="aLightGray" title="HttpOnly">HttpOnly</a> <a href="javascript:;" class="aLightGray" title="Secure">Secure</a> <a href="javascript:;" class="aLightGray" title="SameSite">SameSite</a> <a href="javascript:;" class="aLightGray" title="登录态安全">登录态安全</a> </span> </dd> <dt class="lineOverflow"> <a href="/article/619947.html" class="aBlack" target="_blank" title="PHP Cookie 安全实战:HttpOnly、SameSite 和 Secure 这样配置">PHP Cookie 安全实战:HttpOnly、SameSite 和 Secure 这样配置</a> </dt> <dd class="cont2"> <span><i class="view"></i>420浏览</span> <span class="collectBtn user_collection" data-id="619947" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/619944.html" class="img_box" title="PHP CSRF 表单防护实战:令牌生成、提交校验和过期处理"> <img src="/uploads/20260614/1781407974-php-csrf-failure-checks.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="PHP CSRF 表单防护实战:令牌生成、提交校验和过期处理"> </a> <dl> <dd class="cont1"> <span> <a href="/articlelist/19_new_0_1.html" class="aLightGray" title="文章">文章</a> · <a href="/articlelist/84_new_0_1.html" class="aLightGray" title="php教程">php教程</a>   |  21小时前  |   <a href="/articletag/1433_new_0_1.html" class="aLightGray" title="PHP">PHP</a> · <a href="/articletag/4723_new_0_1.html" class="aLightGray" title="web安全">web安全</a> · <a href="/articletag/39734_new_0_1.html" class="aLightGray" title="CSRF">CSRF</a> · <a href="/articletag/39782_new_0_1.html" class="aLightGray" title="php教程">php教程</a> · <a href="/articletag/39854_new_0_1.html" class="aLightGray" title="表单防护">表单防护</a> · <a href="javascript:;" class="aLightGray" title="php">php</a> <a href="javascript:;" class="aLightGray" title="session">session</a> <a href="javascript:;" class="aLightGray" title="web安全">web安全</a> <a href="javascript:;" class="aLightGray" title="csrf">csrf</a> <a href="javascript:;" class="aLightGray" title="表单安全">表单安全</a> <a href="javascript:;" class="aLightGray" title="hash_equals">hash_equals</a> </span> </dd> <dt class="lineOverflow"> <a href="/article/619944.html" class="aBlack" target="_blank" title="PHP CSRF 表单防护实战:令牌生成、提交校验和过期处理">PHP CSRF 表单防护实战:令牌生成、提交校验和过期处理</a> </dt> <dd class="cont2"> <span><i class="view"></i>306浏览</span> <span class="collectBtn user_collection" data-id="619944" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/619909.html" class="img_box" title="PHP Session 登录态安全实战:Cookie 参数、ID 轮换和过期清理"> <img src="/uploads/20260613/1781311287-php-session-flow.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="PHP Session 登录态安全实战:Cookie 参数、ID 轮换和过期清理"> </a> <dl> <dd class="cont1"> <span> <a href="/articlelist/19_new_0_1.html" class="aLightGray" title="文章">文章</a> · <a href="/articlelist/84_new_0_1.html" class="aLightGray" title="php教程">php教程</a>   |  2天前  |   <a href="/articletag/1200_new_0_1.html" class="aLightGray" title="Cookie">Cookie</a> · <a href="/articletag/1433_new_0_1.html" class="aLightGray" title="PHP">PHP</a> · <a href="/articletag/4365_new_0_1.html" class="aLightGray" title="session">session</a> · <a href="/articletag/39745_new_0_1.html" class="aLightGray" title="后端开发">后端开发</a> · <a href="/articletag/39810_new_0_1.html" class="aLightGray" title="登录安全">登录安全</a> · <a href="javascript:;" class="aLightGray" title="PHP教程">PHP教程</a> <a href="javascript:;" class="aLightGray" title="Session安全">Session安全</a> <a href="javascript:;" class="aLightGray" title="登录态">登录态</a> <a href="javascript:;" class="aLightGray" title="Cookie参数">Cookie参数</a> <a href="javascript:;" class="aLightGray" title="会话过期">会话过期</a> <a href="javascript:;" class="aLightGray" title="登出清理">登出清理</a> </span> </dd> <dt class="lineOverflow"> <a href="/article/619909.html" class="aBlack" target="_blank" title="PHP Session 登录态安全实战:Cookie 参数、ID 轮换和过期清理">PHP Session 登录态安全实战:Cookie 参数、ID 轮换和过期清理</a> </dt> <dd class="cont2"> <span><i class="view"></i>204浏览</span> <span class="collectBtn user_collection" data-id="619909" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/619879.html" class="img_box" title="PHP JSON 接口参数校验实战:统一入口、类型转换和错误响应"> <img src="/uploads/20260613/1781283647-php-validation-flow.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="PHP JSON 接口参数校验实战:统一入口、类型转换和错误响应"> </a> <dl> <dd class="cont1"> <span> <a href="/articlelist/19_new_0_1.html" class="aLightGray" title="文章">文章</a> · <a href="/articlelist/84_new_0_1.html" class="aLightGray" title="php教程">php教程</a>   |  2天前  |   <a href="/articletag/1223_new_0_1.html" class="aLightGray" title="参数校验">参数校验</a> · <a href="/articletag/1433_new_0_1.html" class="aLightGray" title="PHP">PHP</a> · <a href="/articletag/4653_new_0_1.html" class="aLightGray" title="后端">后端</a> · <a href="/articletag/39784_new_0_1.html" class="aLightGray" title="接口开发">接口开发</a> · <a href="javascript:;" class="aLightGray" title="php">php</a> <a href="javascript:;" class="aLightGray" title="API">API</a> <a href="javascript:;" class="aLightGray" title="类型转换">类型转换</a> <a href="javascript:;" class="aLightGray" title="参数校验">参数校验</a> <a href="javascript:;" class="aLightGray" title="错误响应">错误响应</a> <a href="javascript:;" class="aLightGray" title="JSON接口">JSON接口</a> </span> </dd> <dt class="lineOverflow"> <a href="/article/619879.html" class="aBlack" target="_blank" title="PHP JSON 接口参数校验实战:统一入口、类型转换和错误响应">PHP JSON 接口参数校验实战:统一入口、类型转换和错误响应</a> </dt> <dd class="cont2"> <span><i class="view"></i>322浏览</span> <span class="collectBtn user_collection" data-id="619879" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/619876.html" class="img_box" title="PHP 文件上传安全实战:大小限制、MIME 检测和随机文件名"> <img src="/uploads/20260612/1781279196-php-upload-check-flow.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="PHP 文件上传安全实战:大小限制、MIME 检测和随机文件名"> </a> <dl> <dd class="cont1"> <span> <a href="/articlelist/19_new_0_1.html" class="aLightGray" title="文章">文章</a> · <a href="/articlelist/84_new_0_1.html" class="aLightGray" title="php教程">php教程</a>   |  2天前  |   <a href="/articletag/616_new_0_1.html" class="aLightGray" title="文件上传">文件上传</a> · <a href="/articletag/1364_new_0_1.html" class="aLightGray" title="安全">安全</a> · <a href="/articletag/39745_new_0_1.html" class="aLightGray" title="后端开发">后端开发</a> · <a href="/articletag/39782_new_0_1.html" class="aLightGray" title="php教程">php教程</a> · <a href="javascript:;" class="aLightGray" title="php">php</a> <a href="javascript:;" class="aLightGray" title="文件上传">文件上传</a> <a href="javascript:;" class="aLightGray" title="安全处理">安全处理</a> <a href="javascript:;" class="aLightGray" title="move_uploaded_file">move_uploaded_file</a> <a href="javascript:;" class="aLightGray" title="MIME">MIME</a> <a href="javascript:;" class="aLightGray" title="随机文件名">随机文件名</a> </span> </dd> <dt class="lineOverflow"> <a href="/article/619876.html" class="aBlack" target="_blank" title="PHP 文件上传安全实战:大小限制、MIME 检测和随机文件名">PHP 文件上传安全实战:大小限制、MIME 检测和随机文件名</a> </dt> <dd class="cont2"> <span><i class="view"></i>439浏览</span> <span class="collectBtn user_collection" data-id="619876" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/619859.html" class="img_box" title="PHP 接口幂等提交实战:Redis Key + MySQL 唯一索引防重复下单"> <img src="/uploads/20260612/1781255935-php-idempotency-fallback.jpg" onerror="this.src='/assets/images/moren/morentu.png'" alt="PHP 接口幂等提交实战:Redis Key + MySQL 唯一索引防重复下单"> </a> <dl> <dd class="cont1"> <span> <a href="/articlelist/19_new_0_1.html" class="aLightGray" title="文章">文章</a> · <a href="/articlelist/84_new_0_1.html" class="aLightGray" title="php教程">php教程</a>   |  2天前  |   <a href="/articletag/29_new_0_1.html" class="aLightGray" title="MySQL">MySQL</a> · <a href="/articletag/220_new_0_1.html" class="aLightGray" title="Redis">Redis</a> · <a href="/articletag/1433_new_0_1.html" class="aLightGray" title="PHP">PHP</a> · <a href="/articletag/39770_new_0_1.html" class="aLightGray" title="接口设计">接口设计</a> · <a href="javascript:;" class="aLightGray" title="mysql">mysql</a> <a href="javascript:;" class="aLightGray" title="php">php</a> <a href="javascript:;" class="aLightGray" title="redis">redis</a> <a href="javascript:;" class="aLightGray" title="防重复提交">防重复提交</a> <a href="javascript:;" class="aLightGray" title="接口幂等">接口幂等</a> </span> </dd> <dt class="lineOverflow"> <a href="/article/619859.html" class="aBlack" target="_blank" title="PHP 接口幂等提交实战:Redis Key + MySQL 唯一索引防重复下单">PHP 接口幂等提交实战:Redis Key + MySQL 唯一索引防重复下单</a> </dt> <dd class="cont2"> <span><i class="view"></i>378浏览</span> <span class="collectBtn user_collection" data-id="619859" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/619685.html" class="img_box" title="PHPBase64解密方法与实战教程"> <img src="/uploads/20260601/17802911916a1d167708e7f.png" onerror="this.src='/assets/images/moren/morentu.png'" alt="PHPBase64解密方法与实战教程"> </a> <dl> <dd class="cont1"> <span> <a href="/articlelist/19_new_0_1.html" class="aLightGray" title="文章">文章</a> · <a href="/articlelist/84_new_0_1.html" class="aLightGray" title="php教程">php教程</a>   |  1星期前  |   <a href="javascript:;" class="aLightGray" title="PHP字符串">PHP字符串</a> </span> </dd> <dt class="lineOverflow"> <a href="/article/619685.html" class="aBlack" target="_blank" title="PHPBase64解密方法与实战教程">PHPBase64解密方法与实战教程</a> </dt> <dd class="cont2"> <span><i class="view"></i>291浏览</span> <span class="collectBtn user_collection" data-id="619685" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/619672.html" class="img_box" title="PHP移动端扫码数据接收与处理技巧"> <img src="/uploads/20260601/17802907096a1d149545b40.png" onerror="this.src='/assets/images/moren/morentu.png'" alt="PHP移动端扫码数据接收与处理技巧"> </a> <dl> <dd class="cont1"> <span> <a href="/articlelist/19_new_0_1.html" class="aLightGray" title="文章">文章</a> · <a href="/articlelist/84_new_0_1.html" class="aLightGray" title="php教程">php教程</a>   |  1星期前  |   </span> </dd> <dt class="lineOverflow"> <a href="/article/619672.html" class="aBlack" target="_blank" title="PHP移动端扫码数据接收与处理技巧">PHP移动端扫码数据接收与处理技巧</a> </dt> <dd class="cont2"> <span><i class="view"></i>169浏览</span> <span class="collectBtn user_collection" data-id="619672" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/619664.html" class="img_box" title="PHPEnv解决Accessdenied报错教程"> <img src="/uploads/20260601/17802903976a1d135de22b0.jpg" onerror="this.src='/assets/images/moren/morentu.png'" alt="PHPEnv解决Accessdenied报错教程"> </a> <dl> <dd class="cont1"> <span> <a href="/articlelist/19_new_0_1.html" class="aLightGray" title="文章">文章</a> · <a href="/articlelist/84_new_0_1.html" class="aLightGray" title="php教程">php教程</a>   |  1星期前  |   <a href="javascript:;" class="aLightGray" title="phpenv">phpenv</a> </span> </dd> <dt class="lineOverflow"> <a href="/article/619664.html" class="aBlack" target="_blank" title="PHPEnv解决Accessdenied报错教程">PHPEnv解决Accessdenied报错教程</a> </dt> <dd class="cont2"> <span><i class="view"></i>222浏览</span> <span class="collectBtn user_collection" data-id="619664" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/619648.html" class="img_box" title="Laravel并发任务日志记录方法"> <img src="/uploads/20260601/17802896796a1d108f3b160.png" onerror="this.src='/assets/images/moren/morentu.png'" alt="Laravel并发任务日志记录方法"> </a> <dl> <dd class="cont1"> <span> <a href="/articlelist/19_new_0_1.html" class="aLightGray" title="文章">文章</a> · <a href="/articlelist/84_new_0_1.html" class="aLightGray" title="php教程">php教程</a>   |  1星期前  |   <a href="javascript:;" class="aLightGray" title="Laravel">Laravel</a> </span> </dd> <dt class="lineOverflow"> <a href="/article/619648.html" class="aBlack" target="_blank" title="Laravel并发任务日志记录方法">Laravel并发任务日志记录方法</a> </dt> <dd class="cont2"> <span><i class="view"></i>322浏览</span> <span class="collectBtn user_collection" data-id="619648" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/619641.html" class="img_box" title="宝塔面板Docker部署方法详解"> <img src="/uploads/20260601/17802893146a1d0f22c95e4.jpg" onerror="this.src='/assets/images/moren/morentu.png'" alt="宝塔面板Docker部署方法详解"> </a> <dl> <dd class="cont1"> <span> <a href="/articlelist/19_new_0_1.html" class="aLightGray" title="文章">文章</a> · <a href="/articlelist/84_new_0_1.html" class="aLightGray" title="php教程">php教程</a>   |  1星期前  |   </span> </dd> <dt class="lineOverflow"> <a href="/article/619641.html" class="aBlack" target="_blank" title="宝塔面板Docker部署方法详解">宝塔面板Docker部署方法详解</a> </dt> <dd class="cont2"> <span><i class="view"></i>362浏览</span> <span class="collectBtn user_collection" data-id="619641" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/619636.html" class="img_box" title="学号重复检测,PHP唯一性校验技巧"> <img src="/uploads/20260601/17802891436a1d0e7735d07.jpg" onerror="this.src='/assets/images/moren/morentu.png'" alt="学号重复检测,PHP唯一性校验技巧"> </a> <dl> <dd class="cont1"> <span> <a href="/articlelist/19_new_0_1.html" class="aLightGray" title="文章">文章</a> · <a href="/articlelist/84_new_0_1.html" class="aLightGray" title="php教程">php教程</a>   |  1星期前  |   </span> </dd> <dt class="lineOverflow"> <a href="/article/619636.html" class="aBlack" target="_blank" title="学号重复检测,PHP唯一性校验技巧">学号重复检测,PHP唯一性校验技巧</a> </dt> <dd class="cont2"> <span><i class="view"></i>117浏览</span> <span class="collectBtn user_collection" data-id="619636" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> </ul> </div> </div> <div class="mainRight"> <!-- 右侧广告位banner --> <div class="rightContBox" style="margin-top: 0px;"> <div class="rightTit"> <a href="/courselist.html" class="more" title="查看更多">查看更多<i class="iconfont"></i></a> <div class="tit lineOverflow">课程推荐</div> </div> <ul class="lessonRecomRList"> <li> <a href="/course/9.html" class="img_box" target="_blank" title="前端进阶之JavaScript设计模式"> <img src="/uploads/20221222/52fd0f23a454c71029c2c72d206ed815.jpg" onerror="this.onerror='',this.src='/assets/images/moren/morentu.png'" alt="前端进阶之JavaScript设计模式"> </a> <dl> <dt class="lineTwoOverflow"><a href="/course/9.html" target="_blank" class="aBlack" title="前端进阶之JavaScript设计模式">前端进阶之JavaScript设计模式</a></dt> <dd class="cont1 lineTwoOverflow"> 设计模式是开发人员在软件开发过程中面临一般问题时的解决方案,代表了最佳的实践。本课程的主打内容包括JS常见设计模式以及具体应用场景,打造一站式知识长龙服务,适合有JS基础的同学学习。 </dd> <dd class="cont2">543次学习</dd> </dl> </li> <li> <a href="/course/2.html" class="img_box" target="_blank" title="GO语言核心编程课程"> <img src="/uploads/20221221/634ad7404159bfefc6a54a564d437b5f.png" onerror="this.onerror='',this.src='/assets/images/moren/morentu.png'" alt="GO语言核心编程课程"> </a> <dl> <dt class="lineTwoOverflow"><a href="/course/2.html" target="_blank" class="aBlack" title="GO语言核心编程课程">GO语言核心编程课程</a></dt> <dd class="cont1 lineTwoOverflow"> 本课程采用真实案例,全面具体可落地,从理论到实践,一步一步将GO核心编程技术、编程思想、底层实现融会贯通,使学习者贴近时代脉搏,做IT互联网时代的弄潮儿。 </dd> <dd class="cont2">516次学习</dd> </dl> </li> <li> <a href="/course/74.html" class="img_box" target="_blank" title="简单聊聊mysql8与网络通信"> <img src="/uploads/20240103/bad35fe14edbd214bee16f88343ac57c.png" onerror="this.onerror='',this.src='/assets/images/moren/morentu.png'" alt="简单聊聊mysql8与网络通信"> </a> <dl> <dt class="lineTwoOverflow"><a href="/course/74.html" target="_blank" class="aBlack" title="简单聊聊mysql8与网络通信">简单聊聊mysql8与网络通信</a></dt> <dd class="cont1 lineTwoOverflow"> 如有问题加微信:Le-studyg;在课程中,我们将首先介绍MySQL8的新特性,包括性能优化、安全增强、新数据类型等,帮助学生快速熟悉MySQL8的最新功能。接着,我们将深入解析MySQL的网络通信机制,包括协议、连接管理、数据传输等,让 </dd> <dd class="cont2">500次学习</dd> </dl> </li> <li> <a href="/course/57.html" class="img_box" target="_blank" title="JavaScript正则表达式基础与实战"> <img src="/uploads/20221226/bbe4083bb3cb0dd135fb02c31c3785fb.jpg" onerror="this.onerror='',this.src='/assets/images/moren/morentu.png'" alt="JavaScript正则表达式基础与实战"> </a> <dl> <dt class="lineTwoOverflow"><a href="/course/57.html" target="_blank" class="aBlack" title="JavaScript正则表达式基础与实战">JavaScript正则表达式基础与实战</a></dt> <dd class="cont1 lineTwoOverflow"> 在任何一门编程语言中,正则表达式,都是一项重要的知识,它提供了高效的字符串匹配与捕获机制,可以极大的简化程序设计。 </dd> <dd class="cont2">487次学习</dd> </dl> </li> <li> <a href="/course/28.html" class="img_box" target="_blank" title="从零制作响应式网站—Grid布局"> <img src="/uploads/20221223/ac110f88206daeab6c0cf38ebf5fe9ed.jpg" onerror="this.onerror='',this.src='/assets/images/moren/morentu.png'" alt="从零制作响应式网站—Grid布局"> </a> <dl> <dt class="lineTwoOverflow"><a href="/course/28.html" target="_blank" class="aBlack" title="从零制作响应式网站—Grid布局">从零制作响应式网站—Grid布局</a></dt> <dd class="cont1 lineTwoOverflow"> 本系列教程将展示从零制作一个假想的网络科技公司官网,分为导航,轮播,关于我们,成功案例,服务流程,团队介绍,数据部分,公司动态,底部信息等内容区块。网站整体采用CSSGrid布局,支持响应式,有流畅过渡和展现动画。 </dd> <dd class="cont2">485次学习</dd> </dl> </li> </ul> </div> <div class="rightContBox"> <div class="rightTit"> <a href="/ai.html" class="more" title="查看更多">查看更多<i class="iconfont"></i></a> <div class="tit lineOverflow">AI推荐</div> </div> <ul class="lessonRecomRList"> <li> <a href="/ai/13100.html" target="_blank" title="ChatExcel酷表:告别Excel难题,北大团队AI助手助您轻松处理数据" class="img_box"> <img src="/uploads/20251027/176155320368ff2b3345c06.jpg" onerror="this.onerror='',this.src='/assets/images/moren/morentu.png'" alt="ChatExcel酷表:告别Excel难题,北大团队AI助手助您轻松处理数据" style="object-fit:cover;width:100%;height:100%;"> </a> <dl> <dt class="lineTwoOverflow"><a href="/ai/13100.html" class="aBlack" target="_blank" title="ChatExcel酷表">ChatExcel酷表</a></dt> <dd class="cont1 lineTwoOverflow"> ChatExcel酷表是由北京大学团队打造的Excel聊天机器人,用自然语言操控表格,简化数据处理,告别繁琐操作,提升工作效率!适用于学生、上班族及政府人员。 </dd> <dd class="cont2">8600次使用</dd> </dl> </li> <li> <a href="/ai/13099.html" target="_blank" title="Any绘本:开源免费AI绘本创作工具深度解析" class="img_box"> <img src="/uploads/20251023/176120760368f9e5333da5f.jpg" onerror="this.onerror='',this.src='/assets/images/moren/morentu.png'" alt="Any绘本:开源免费AI绘本创作工具深度解析" style="object-fit:cover;width:100%;height:100%;"> </a> <dl> <dt class="lineTwoOverflow"><a href="/ai/13099.html" class="aBlack" target="_blank" title="Any绘本">Any绘本</a></dt> <dd class="cont1 lineTwoOverflow"> 探索Any绘本(anypicturebook.com/zh),一款开源免费的AI绘本创作工具,基于Google Gemini与Flux AI模型,让您轻松创作个性化绘本。适用于家庭、教育、创作等多种场景,零门槛,高自由度,技术透明,本地可控。 </dd> <dd class="cont2">9018次使用</dd> </dl> </li> <li> <a href="/ai/13098.html" target="_blank" title="可赞AI:AI驱动办公可视化智能工具,一键高效生成文档图表脑图" class="img_box"> <img src="/uploads/20251021/176103600268f746e238bb8.jpg" onerror="this.onerror='',this.src='/assets/images/moren/morentu.png'" alt="可赞AI:AI驱动办公可视化智能工具,一键高效生成文档图表脑图" style="object-fit:cover;width:100%;height:100%;"> </a> <dl> <dt class="lineTwoOverflow"><a href="/ai/13098.html" class="aBlack" target="_blank" title="可赞AI">可赞AI</a></dt> <dd class="cont1 lineTwoOverflow"> 可赞AI,AI驱动的办公可视化智能工具,助您轻松实现文本与可视化元素高效转化。无论是智能文档生成、多格式文本解析,还是一键生成专业图表、脑图、知识卡片,可赞AI都能让信息处理更清晰高效。覆盖数据汇报、会议纪要、内容营销等全场景,大幅提升办公效率,降低专业门槛,是您提升工作效率的得力助手。 </dd> <dd class="cont2">8846次使用</dd> </dl> </li> <li> <a href="/ai/13097.html" target="_blank" title="星月写作:AI网文创作神器,助力爆款小说速成" class="img_box"> <img src="/uploads/20251014/176043000368ee07b3159d6.jpg" onerror="this.onerror='',this.src='/assets/images/moren/morentu.png'" alt="星月写作:AI网文创作神器,助力爆款小说速成" style="object-fit:cover;width:100%;height:100%;"> </a> <dl> <dt class="lineTwoOverflow"><a href="/ai/13097.html" class="aBlack" target="_blank" title="星月写作">星月写作</a></dt> <dd class="cont1 lineTwoOverflow"> 星月写作是国内首款聚焦中文网络小说创作的AI辅助工具,解决网文作者从构思到变现的全流程痛点。AI扫榜、专属模板、全链路适配,助力新人快速上手,资深作者效率倍增。 </dd> <dd class="cont2">10746次使用</dd> </dl> </li> <li> <a href="/ai/13096.html" target="_blank" title="MagicLight.ai:叙事驱动AI动画视频创作平台 | 高效生成专业级故事动画" class="img_box"> <img src="/uploads/20251014/176040000268ed9282edf80.jpg" onerror="this.onerror='',this.src='/assets/images/moren/morentu.png'" alt="MagicLight.ai:叙事驱动AI动画视频创作平台 | 高效生成专业级故事动画" style="object-fit:cover;width:100%;height:100%;"> </a> <dl> <dt class="lineTwoOverflow"><a href="/ai/13096.html" class="aBlack" target="_blank" title="MagicLight">MagicLight</a></dt> <dd class="cont1 lineTwoOverflow"> MagicLight.ai是全球首款叙事驱动型AI动画视频创作平台,专注于解决从故事想法到完整动画的全流程痛点。它通过自研AI模型,保障角色、风格、场景高度一致性,让零动画经验者也能高效产出专业级叙事内容。广泛适用于独立创作者、动画工作室、教育机构及企业营销,助您轻松实现创意落地与商业化。 </dd> <dd class="cont2">9687次使用</dd> </dl> </li> </ul> </div> <!-- 相关文章 --> <div class="rightContBox"> <div class="rightTit"> <a href="/articlelist.html" class="more" title="查看更多">查看更多<i class="iconfont"></i></a> <div class="tit lineOverflow">相关文章</div> </div> <ul class="aboutArticleRList"> <li> <dl> <dt class="lineTwoOverflow"><a href="/article/61908.html" class="aBlack" title="PHP技术的高薪回报与发展前景">PHP技术的高薪回报与发展前景</a></dt> <dd> <span class="left">2023-10-08</span> <span class="right">501浏览</span> </dd> </dl> </li> <li> <dl> <dt class="lineTwoOverflow"><a href="/article/62538.html" class="aBlack" title="基于 PHP 的商场优惠券系统开发中的常见问题解决方案">基于 PHP 的商场优惠券系统开发中的常见问题解决方案</a></dt> <dd> <span class="left">2023-10-05</span> <span class="right">501浏览</span> </dd> </dl> </li> <li> <dl> <dt class="lineTwoOverflow"><a href="/article/62741.html" class="aBlack" title="如何使用PHP开发简单的在线支付功能">如何使用PHP开发简单的在线支付功能</a></dt> <dd> <span class="left">2023-09-27</span> <span class="right">501浏览</span> </dd> </dl> </li> <li> <dl> <dt class="lineTwoOverflow"><a href="/article/62881.html" class="aBlack" title="PHP消息队列开发指南:实现分布式缓存刷新器">PHP消息队列开发指南:实现分布式缓存刷新器</a></dt> <dd> <span class="left">2023-09-30</span> <span class="right">501浏览</span> </dd> </dl> </li> <li> <dl> <dt class="lineTwoOverflow"><a href="/article/63734.html" class="aBlack" title="如何在PHP微服务中实现分布式任务分配和调度">如何在PHP微服务中实现分布式任务分配和调度</a></dt> <dd> <span class="left">2023-10-04</span> <span class="right">501浏览</span> </dd> </dl> </li> </ul> </div> </div> </div> <div class="footer"> <div class="footerIn"> <div class="footLeft"> <div class="linkBox"> <a href="/about/1.html" target="_blank" class="aBlack" title="关于我们">关于我们</a> <a href="/about/5.html" target="_blank" class="aBlack" title="免责声明">免责声明</a> <a href="#" class="aBlack" title="意见反馈">意见反馈</a> <a href="/about/2.html" class="aBlack" target="_blank" title="联系我们">联系我们</a> <a href="/send.html" class="aBlack" title="广告合作">内容提交</a> <a href="/manual/go/" target="_blank" class="aBlack" title="手册">手册</a> </div> <div class="footTip">Golang学习网:公益在线Go学习平台,帮助Go学习者快速成长!</div> <div class="shareBox"> <span><i class="qq"></i>技术交流群</span> </div> <div class="copyRight"> Copyright 2023 http://www.17golang.com/ All Rights Reserved | <a href="https://beian.miit.gov.cn/" target="_blank" title="备案">苏ICP备2023003363号-1</a> </div> </div> <div class="footRight"> <ul class="encodeList"> <li> <div class="encodeImg"> <img src="/assets/examples/qrcode_for_gh.jpg" alt="Golang学习网"> </div> <div class="tit">关注公众号</div> <div class="tip">Golang学习网</div> </li> <div class="clear"></div> </ul> </div> <div class="clear"></div> </div> </div> <!-- 微信登录弹窗 --> <style> .popupBg .n-error{ color: red; } </style> <div class="popupBg"> <div class="loginBoxBox"> <div class="imgbg"> <img src="/assets/images/leftlogo.jpg" alt=""> </div> <!-- 微信登录 --> <div class="loginInfo encodeLogin" style="display: none;"> <div class="closeIcon" onclick="$('.popupBg').hide();"></div> <div class="changeLoginType cursorPointer create_wxqrcode" onclick="$('.loginInfo').hide();$('.passwordLogin').show();"> <div class="tip">密码登录在这里</div> </div> <div class="encodeInfo"> <div class="tit"><i></i> 微信扫码登录或注册</div> <div class="encodeImg"> <span id="wx_login_qrcode"><img src="/assets/examples/code.png" alt="二维码"></span> <!-- <div class="refreshBox"> <p>二维码失效</p> <button type="button" class="create_wxqrcode">刷新1111</button> </div> --> </div> <div class="tip">打开微信扫一扫,快速登录/注册</div> </div> <div class="beforeLoginTip">登录即同意 <a href="#" class="aBlue" title="用户协议">用户协议</a> 和 <a href="#" class="aBlue" title="隐私政策">隐私政策</a></div> </div> <!-- 密码登录 --> <div class="loginInfo passwordLogin"> <div class="closeIcon" onclick="$('.popupBg').hide();"></div> <div class="changeLoginType cursorPointer create_wxqrcode" onclick="$('.loginInfo').hide();$('.encodeLogin').show();"> <div class="tip">微信登录更方便</div> </div> <div class="passwordInfo"> <ul class="logintabs selfTabMenu"> <li class="selfTabItem loginFormLi curr">密码登录</li> <li class="selfTabItem registerFormBox ">注册账号</li> </ul> <div class="selfTabContBox"> <div class="selfTabCont loginFormBox" style="display: block;"> <form name="form" id="login-form" class="form-vertical form" method="POST" action="/index/user/login"> <input type="hidden" name="url" value="//www.17golang.com/article/525437.html"/> <input type="hidden" name="__token__" value="6d4b587df795265d015ade18a0354eaa" /> <div class="form-group" style="height:70px;"> <input class="form-control" id="account" type="text" name="account" value="" data-rule="required" placeholder="邮箱/用户名" autocomplete="off"> </div> <div class="form-group" style="height:70px;"> <input class="form-control" id="password" type="password" name="password" data-rule="required;password" placeholder="密码" autocomplete="off"> </div> <div class="codeBox" style="height:70px;"> <div class="form-group" style="height:70px; width:205px; float: left;"> <input type="text" name="captcha" class="form-control" placeholder="验证码" data-rule="required;length(4)" /> </div> <span class="input-group-btn" style="padding:0;border:none;"> <img src="/captcha.html" width="100" height="45" onclick="this.src = '/captcha.html?r=' + Math.random();"/> </span> </div> <div class="other"> <a href="#" class="forgetPwd aGray" onclick="$('.loginInfo').hide();$('.passwordForget').show();" title="忘记密码">忘记密码</a> </div> <div class="loginBtn mt25"> <button type="submit">登录</button> </div> </form> </div> <div class="selfTabCont registerFormBox" style="display: none;"> <form name="form1" id="register-form" class="form-vertical form" method="POST" action="/index/user/register"> <input type="hidden" name="invite_user_id" value="0"/> <input type="hidden" name="url" value="//www.17golang.com/article/525437.html"/> <input type="hidden" name="__token__" value="6d4b587df795265d015ade18a0354eaa" /> <div class="form-group" style="height:70px;"> <input type="text" name="email" id="email2" data-rule="required;email" class="form-control" placeholder="邮箱"> </div> <div class="form-group" style="height:70px;"> <input type="text" id="username" name="username" data-rule="required;username" class="form-control" placeholder="用户名必须3-30个字符"> </div> <div class="form-group" style="height:70px;"> <input type="password" id="password2" name="password" data-rule="required;password" class="form-control" placeholder="密码必须6-30个字符"> </div> <div class="codeBox" style="height:70px;"> <div class="form-group" style="height:70px; width:205px; float: left;"> <input type="text" name="captcha" class="form-control" placeholder="验证码" data-rule="required;length(4)" /> </div> <span class="input-group-btn" style="padding:0;border:none;"> <img src="/captcha.html" width="100" height="45" onclick="this.src = '/captcha.html?r=' + Math.random();"/> </span> </div> <div class="loginBtn"> <button type="submit">注册</button> </div> </form> </div> </div> </div> <div class="beforeLoginTip">登录即同意 <a href="https://www.17golang.com/about/3.html" target="_blank" class="aBlue" title="用户协议">用户协议</a> 和 <a href="https://www.17golang.com/about/4.html" target="_blank" class="aBlue" title="隐私政策">隐私政策</a></div> </div> <!-- 重置密码 --> <div class="loginInfo passwordForget"> <div class="closeIcon" onclick="$('.popupBg').hide();"></div> <div class="returnLogin cursorPointer" onclick="$('.passwordForget').hide();$('.passwordLogin').show();">返回登录</div> <div class="passwordInfo"> <ul class="logintabs selfTabMenu"> <li class="selfTabItem">重置密码</li> </ul> <div class="selfTabContBox"> <div class="selfTabCont"> <form id="resetpwd-form" class="form-horizontal form-layer nice-validator n-default n-bootstrap form" method="POST" action="/api/user/resetpwd.html" novalidate="novalidate"> <div style="height:70px;"> <input type="text" class="form-control" id="email" name="email" value="" placeholder="输入邮箱" aria-invalid="true"> </div> <div class="codeBox" style="height:70px;"> <div class="form-group" style="height:70px; width:205px; float: left;"> <input type="text" name="captcha" class="form-control" placeholder="验证码" /> </div> <span class="input-group-btn" style="padding:0;border:none;"> <a href="javascript:;" class="btn btn-primary btn-captcha cursorPointer" style="background: #2080F8; border-radius: 4px; color: #fff; padding: 12px; position: absolute;" data-url="/api/ems/send.html" data-type="email" data-event="resetpwd">发送验证码</a> </span> </div> <input type="password" class="form-control" id="newpassword" name="newpassword" value="" placeholder="请输入6-18位密码"> <div class="loginBtn mt25"> <button type="submit">重置密码</button> </div> </form> </div> </div> </div> </div> </div> </div> <script src="/assets/js/juejin-theme.js?v=20260613b"></script> <script> var _hmt = _hmt || []; (function() { var hm = document.createElement("script"); hm.src = "https://hm.baidu.com/hm.js?3dc5666f6478c7bf39cd5c91e597423d"; var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(hm, s); })(); </script> <script src="/assets/js/frontend/common.js"></script> </body> </html>