当前位置:首页 > 文章列表 > 文章 > php教程 > PHP处理Eloquent属性分析状态教程

PHP处理Eloquent属性分析状态教程

2026-05-26 20:11:14 0浏览 收藏
本文揭穿了所谓“Attribute Analytics States”这一伪概念,明确指出Laravel Eloquent中并不存在该原生机制,它不过是将accessor、mutator和casts等真实功能错误包装的营销术语;文章深入剖析了属性读写干预的三大核心路径,强调真正的属性“分析”行为(如日志记录、访问统计、缓存触发)必须通过自定义逻辑实现——尤其是重写底层的getAttributeValue()方法以精准监控关键字段,并警示开发者勿误用casts进行运行时分析,同时提醒在序列化、API响应、队列等复杂上下文中需谨慎设计分析逻辑的性能、可维护性与环境适应性。

PHP怎么处理Eloquent Attribute Analytics States属性分析状态_Laravel数据科学管道【教程】

PHP 里没有叫 Attribute Analytics States 的 Eloquent 原生概念,Laravel 官方文档和源码中也不存在这个术语。它大概率是某篇误导性教程拼凑的营销词,或是把几个真实机制(accessormutatorcastsgetAttributeValue()、模型事件)混在一起包装出来的“伪功能”。

别被“Attribute Analytics States”这种词带偏,Eloquent 真实的属性处理就三类

所有对模型属性的读写干预,最终都落在这三个地方:

  • accessor:定义 getFooAttribute() 方法,影响读取 $model->foo 的值(比如转小写、格式化时间)
  • mutator:定义 setFooAttribute($value) 方法,影响赋值 $model->foo = $x 的行为(比如自动哈希、截断字符串)
  • casts:在模型中声明 protected $casts = ['active' => 'boolean', 'meta' => 'array'],由 Laravel 自动完成类型转换

所谓“分析状态”,实际就是你在 accessor/mutator 里加的逻辑——比如统计访问次数、打日志、触发缓存更新。但这些不是框架内置状态,是你自己写的代码。

想记录属性访问行为?用 getAttributeValue() + 模型事件更可控

如果真需要“分析”某个属性被读取了多少次、谁读的、何时读的,别试图魔改 accessor(它不区分是控制器调用还是 Blade 渲染),而是重写模型的 getAttributeValue()

public function getAttributeValue($key)
{
    // 只监控特定字段,避免全量日志爆炸
    if (in_array($key, ['status', 'score'])) {
        \Log::info('Attribute accessed', [
            'model' => static::class,
            'key' => $key,
            'id' => $this->id ?? null,
            'trace' => debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS, 2)[1]['function'] ?? 'unknown'
        ]);
    }
    return parent::getAttributeValue($key);
}

注意:getAttributeValue() 是底层方法,会拦截所有属性访问(包括关系、原始属性、动态属性),比 accessor 更底层;但它不适用于写操作,写操作要盯住 setAttribute() 或 mutator。

常见踩坑:把 cast 当成运行时分析工具

$casts 只做类型转换,不做逻辑分析。下面这段代码不会“分析状态”,只会报错或静默失败:

protected $casts = [
    'updated_at' => 'datetime:Y-m-d analytics_state=tracked'
];

原因:casts 不支持键值对语法,Laravel 解析到不认识的 analytics_state=tracked 会直接忽略或抛出 InvalidArgumentException。真要附加元信息,得用 protected $analyzedAttributes = ['status', 'score'] 这样的自定义属性配合日志逻辑。

复杂点在于:属性访问可能发生在序列化(toArray())、API 响应、队列任务甚至测试 mock 中——这些上下文里,你加的日志或计数器是否还有效、会不会拖慢响应、要不要按环境开关,才是真正要花时间判断的地方。

终于介绍完啦!小伙伴们,这篇关于《PHP处理Eloquent属性分析状态教程》的介绍应该让你收获多多了吧!欢迎大家收藏或分享给更多需要学习的朋友吧~golang学习网公众号也会发布文章相关知识,快来关注吧!

自定义占位文字样式" class="img_box"> <img src="/uploads/20260526/17797973866a158d8aa5c6c.png" onerror="this.onerror='',this.src='/assets/images/moren/morentu.png'" alt="HTML中可以通过CSS的::placeholder伪元素来自定义输入框(<input>或<textarea>)中占位文字(placeholder)的样式。以下是一个简单的示例,展示如何修改占位文字的颜色、字体大小和字体样式: <!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="UTF-8"> <title>自定义占位文字样式">HTML中可以通过CSS的::placeholder伪元素来自定义输入框(<input>或<textarea>)中占位文字(placeholder)的样式。以下是一个简单的示例,展示如何修改占位文字的颜色、字体大小和字体样式: <!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="UTF-8"> <title>自定义占位文字样式 </a> <dl> <dt class="lineOverflow"><a href="/article/612816.html" title="HTML中可以通过CSS的::placeholder伪元素来自定义输入框(<input>或<textarea>)中占位文字(placeholder)的样式。以下是一个简单的示例,展示如何修改占位文字的颜色、字体大小和字体样式: <!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="UTF-8"> <title>自定义占位文字样式" class="aBlack">上一篇<i></i></a></dt> <dd class="lineTwoOverflow">HTML中可以通过CSS的::placeholder伪元素来自定义输入框(<input>或<textarea>)中占位文字(placeholder)的样式。以下是一个简单的示例,展示如何修改占位文字的颜色、字体大小和字体样式: <!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="UTF-8"> <title>自定义占位文字样式</dd> </dl> </div> <div class="cateItem"> <a href="/article/612818.html" title="高德外卖怎么换头像?教程详解" class="img_box"> <img src="/uploads/20260526/17797975516a158e2f5b1b7.png" onerror="this.onerror='',this.src='/assets/images/moren/morentu.png'" alt="高德外卖怎么换头像?教程详解"> </a> <dl> <dt class="lineOverflow"><a href="/article/612818.html" class="aBlack" title="高德外卖怎么换头像?教程详解">下一篇<i></i></a></dt> <dd class="lineTwoOverflow">高德外卖怎么换头像?教程详解</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/620175.html" class="img_box" title="PHP 文件上传怎么做才安全:从 $_FILES 校验到落盘和清理"> <img src="/uploads/20260707/1783412382-php-upload-lifecycle.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="PHP 文件上传怎么做才安全:从 $_FILES 校验到落盘和清理"> </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>   |  5小时前  |   <a href="/articletag/616_new_0_1.html" class="aLightGray" title="文件上传">文件上传</a> · <a href="/articletag/39782_new_0_1.html" class="aLightGray" title="php教程">php教程</a> · <a href="/articletag/40141_new_0_1.html" class="aLightGray" title="$_FILES">$_FILES</a> · <a href="/articletag/40142_new_0_1.html" class="aLightGray" title="上传安全">上传安全</a> · <a href="/articletag/40143_new_0_1.html" class="aLightGray" title="MIME">MIME</a> · <a href="javascript:;" class="aLightGray" title="PHP文件上传">PHP文件上传</a> <a href="javascript:;" class="aLightGray" title="move_uploaded_file">move_uploaded_file</a> <a href="javascript:;" class="aLightGray" title="$_FILES">$_FILES</a> <a href="javascript:;" class="aLightGray" title="文件校验">文件校验</a> <a href="javascript:;" class="aLightGray" title="MIME">MIME</a> <a href="javascript:;" class="aLightGray" title="PHP教程">PHP教程</a> </span> </dd> <dt class="lineOverflow"> <a href="/article/620175.html" class="aBlack" target="_blank" title="PHP 文件上传怎么做才安全:从 $_FILES 校验到落盘和清理">PHP 文件上传怎么做才安全:从 $_FILES 校验到落盘和清理</a> </dt> <dd class="cont2"> <span><i class="view"></i>242浏览</span> <span class="collectBtn user_collection" data-id="620175" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/620151.html" class="img_box" title="PHP 表单校验错误怎么回填:保留输入、定位字段和友好提示"> <img src="/uploads/20260702/1782961488-php-form-error-refill.webp" 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>   |  5天前  |   <a href="/articletag/1433_new_0_1.html" class="aLightGray" title="PHP">PHP</a> · <a href="/articletag/5304_new_0_1.html" class="aLightGray" title="错误提示">错误提示</a> · <a href="/articletag/39947_new_0_1.html" class="aLightGray" title="表单校验">表单校验</a> · <a href="/articletag/39991_new_0_1.html" class="aLightGray" title="用户体验">用户体验</a> · <a href="/articletag/40122_new_0_1.html" class="aLightGray" title="服务端验证">服务端验证</a> · <a href="javascript:;" class="aLightGray" title="用户体验">用户体验</a> <a href="javascript:;" class="aLightGray" title="表单校验">表单校验</a> <a href="javascript:;" class="aLightGray" title="服务端验证">服务端验证</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="旧输入">旧输入</a> </span> </dd> <dt class="lineOverflow"> <a href="/article/620151.html" class="aBlack" target="_blank" title="PHP 表单校验错误怎么回填:保留输入、定位字段和友好提示">PHP 表单校验错误怎么回填:保留输入、定位字段和友好提示</a> </dt> <dd class="cont2"> <span><i class="view"></i>134浏览</span> <span class="collectBtn user_collection" data-id="620151" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/620140.html" class="img_box" title="PHP Session 迁移到 Redis:从本机文件到集中存储的回归检查清单"> <img src="/uploads/20260701/1782893643-php-session-files-risk.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="PHP Session 迁移到 Redis:从本机文件到集中存储的回归检查清单"> </a> <dl> <dd class="cont1"> <span> <a href="/articlelist/19_new_0_1.html" class="aLightGray" title="文章">文章</a> · <a href="/articlelist/84_new_0_1.html" class="aLightGray" title="php教程">php教程</a>   |  6天前  |   <a href="/articletag/220_new_0_1.html" class="aLightGray" title="Redis">Redis</a> · <a href="/articletag/3600_new_0_1.html" class="aLightGray" title="迁移">迁移</a> · <a href="/articletag/4365_new_0_1.html" class="aLightGray" title="session">session</a> · <a href="/articletag/39782_new_0_1.html" class="aLightGray" title="php教程">php教程</a> · <a href="/articletag/39862_new_0_1.html" class="aLightGray" title="登录态">登录态</a> · <a href="javascript:;" class="aLightGray" title="redis">redis</a> <a href="javascript:;" class="aLightGray" title="session">session</a> <a href="javascript:;" class="aLightGray" title="phpredis">phpredis</a> <a href="javascript:;" class="aLightGray" title="PHP教程">PHP教程</a> <a href="javascript:;" class="aLightGray" title="session.save_handler">session.save_handler</a> <a href="javascript:;" class="aLightGray" title="分布式登录">分布式登录</a> <a href="javascript:;" class="aLightGray" title="回归检查">回归检查</a> </span> </dd> <dt class="lineOverflow"> <a href="/article/620140.html" class="aBlack" target="_blank" title="PHP Session 迁移到 Redis:从本机文件到集中存储的回归检查清单">PHP Session 迁移到 Redis:从本机文件到集中存储的回归检查清单</a> </dt> <dd class="cont2"> <span><i class="view"></i>145浏览</span> <span class="collectBtn user_collection" data-id="620140" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/620114.html" class="img_box" title="PHP 老接口迁移变更单:从散落 $_POST 到 Request DTO 与统一错误响应"> <img src="/uploads/20260630/1782803371-php-dto-migration-entry.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="PHP 老接口迁移变更单:从散落 $_POST 到 Request DTO 与统一错误响应"> </a> <dl> <dd class="cont1"> <span> <a href="/articlelist/19_new_0_1.html" class="aLightGray" title="文章">文章</a> · <a href="/articlelist/84_new_0_1.html" class="aLightGray" title="php教程">php教程</a>   |  1星期前  |   <a href="/articletag/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/25013_new_0_1.html" class="aLightGray" title="DTO">DTO</a> · <a href="/articletag/39770_new_0_1.html" class="aLightGray" title="接口设计">接口设计</a> · <a href="javascript:;" class="aLightGray" title="php">php</a> <a href="javascript:;" class="aLightGray" title="参数校验">参数校验</a> <a href="javascript:;" class="aLightGray" title="统一错误响应">统一错误响应</a> <a href="javascript:;" class="aLightGray" title="Request DTO">Request DTO</a> <a href="javascript:;" class="aLightGray" title="接口迁移">接口迁移</a> </span> </dd> <dt class="lineOverflow"> <a href="/article/620114.html" class="aBlack" target="_blank" title="PHP 老接口迁移变更单:从散落 $_POST 到 Request DTO 与统一错误响应">PHP 老接口迁移变更单:从散落 $_POST 到 Request DTO 与统一错误响应</a> </dt> <dd class="cont2"> <span><i class="view"></i>199浏览</span> <span class="collectBtn user_collection" data-id="620114" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/620103.html" class="img_box" title="PHP 表单提交后刷新重复提交怎么办:PRG 模式和闪存提示这样做"> <img src="/uploads/20260630/1782787294-php-prg-duplicate-flow.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="PHP 表单提交后刷新重复提交怎么办:PRG 模式和闪存提示这样做"> </a> <dl> <dd class="cont1"> <span> <a href="/articlelist/19_new_0_1.html" class="aLightGray" title="文章">文章</a> · <a href="/articlelist/84_new_0_1.html" class="aLightGray" title="php教程">php教程</a>   |  1星期前  |   <a href="/articletag/1433_new_0_1.html" class="aLightGray" title="PHP">PHP</a> · <a href="/articletag/25404_new_0_1.html" class="aLightGray" title="PRG">PRG</a> · <a href="/articletag/39920_new_0_1.html" class="aLightGray" title="表单提交">表单提交</a> · <a href="/articletag/39990_new_0_1.html" class="aLightGray" title="重复提交">重复提交</a> · <a href="/articletag/39991_new_0_1.html" class="aLightGray" title="用户体验">用户体验</a> · <a href="javascript:;" class="aLightGray" title="用户体验">用户体验</a> <a href="javascript:;" class="aLightGray" title="重复提交">重复提交</a> <a href="javascript:;" class="aLightGray" title="PHP表单">PHP表单</a> <a href="javascript:;" class="aLightGray" title="PRG模式">PRG模式</a> <a href="javascript:;" class="aLightGray" title="闪存消息">闪存消息</a> </span> </dd> <dt class="lineOverflow"> <a href="/article/620103.html" class="aBlack" target="_blank" title="PHP 表单提交后刷新重复提交怎么办:PRG 模式和闪存提示这样做">PHP 表单提交后刷新重复提交怎么办:PRG 模式和闪存提示这样做</a> </dt> <dd class="cont2"> <span><i class="view"></i>232浏览</span> <span class="collectBtn user_collection" data-id="620103" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/620099.html" class="img_box" title="PHP-FPM 慢请求报警运行手册:从 slowlog 到进程池参数调整"> <img src="/uploads/20260629/1782728272-php-fpm-runbook-fix.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="PHP-FPM 慢请求报警运行手册:从 slowlog 到进程池参数调整"> </a> <dl> <dd class="cont1"> <span> <a href="/articlelist/19_new_0_1.html" class="aLightGray" title="文章">文章</a> · <a href="/articlelist/84_new_0_1.html" class="aLightGray" title="php教程">php教程</a>   |  1星期前  |   <a href="/articletag/1433_new_0_1.html" class="aLightGray" title="PHP">PHP</a> · <a href="/articletag/5276_new_0_1.html" class="aLightGray" title="php-fpm">php-fpm</a> · <a href="/articletag/39902_new_0_1.html" class="aLightGray" title="运维排查">运维排查</a> · <a href="/articletag/40062_new_0_1.html" class="aLightGray" title="慢请求">慢请求</a> · <a href="javascript:;" class="aLightGray" title="运维">运维</a> <a href="javascript:;" class="aLightGray" title="slowlog">slowlog</a> <a href="javascript:;" class="aLightGray" title="php-fpm">php-fpm</a> <a href="javascript:;" class="aLightGray" title="进程池">进程池</a> <a href="javascript:;" class="aLightGray" title="慢请求">慢请求</a> </span> </dd> <dt class="lineOverflow"> <a href="/article/620099.html" class="aBlack" target="_blank" title="PHP-FPM 慢请求报警运行手册:从 slowlog 到进程池参数调整">PHP-FPM 慢请求报警运行手册:从 slowlog 到进程池参数调整</a> </dt> <dd class="cont2"> <span><i class="view"></i>336浏览</span> <span class="collectBtn user_collection" data-id="620099" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/620088.html" class="img_box" title="PHP 同步接口队列化改造趋势:从请求内处理到后台 Job Worker"> <img src="/uploads/20260629/1782713908-php-queue-adoption-path.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="PHP 同步接口队列化改造趋势:从请求内处理到后台 Job Worker"> </a> <dl> <dd class="cont1"> <span> <a href="/articlelist/19_new_0_1.html" class="aLightGray" title="文章">文章</a> · <a href="/articlelist/84_new_0_1.html" class="aLightGray" title="php教程">php教程</a>   |  1星期前  |   <a href="/articletag/220_new_0_1.html" class="aLightGray" title="Redis">Redis</a> · <a href="/articletag/39767_new_0_1.html" class="aLightGray" title="任务队列">任务队列</a> · <a href="/articletag/39782_new_0_1.html" class="aLightGray" title="php教程">php教程</a> · <a href="/articletag/39841_new_0_1.html" class="aLightGray" title="接口优化">接口优化</a> · <a href="/articletag/40038_new_0_1.html" class="aLightGray" title="后台任务">后台任务</a> · <a href="javascript:;" class="aLightGray" title="异步处理">异步处理</a> <a href="javascript:;" class="aLightGray" title="PHP队列">PHP队列</a> <a href="javascript:;" class="aLightGray" title="后台任务">后台任务</a> <a href="javascript:;" class="aLightGray" title="Redis队列">Redis队列</a> <a href="javascript:;" class="aLightGray" title="接口优化">接口优化</a> <a href="javascript:;" class="aLightGray" title="Job Worker">Job Worker</a> </span> </dd> <dt class="lineOverflow"> <a href="/article/620088.html" class="aBlack" target="_blank" title="PHP 同步接口队列化改造趋势:从请求内处理到后台 Job Worker">PHP 同步接口队列化改造趋势:从请求内处理到后台 Job Worker</a> </dt> <dd class="cont2"> <span><i class="view"></i>178浏览</span> <span class="collectBtn user_collection" data-id="620088" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/620086.html" class="img_box" title="PHP 导出大数据内存耗尽排查:从一次性数组到流式写 CSV"> <img src="/uploads/20260629/1782711021-php-csv-memory-problem.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="PHP 导出大数据内存耗尽排查:从一次性数组到流式写 CSV"> </a> <dl> <dd class="cont1"> <span> <a href="/articlelist/19_new_0_1.html" class="aLightGray" title="文章">文章</a> · <a href="/articlelist/84_new_0_1.html" class="aLightGray" title="php教程">php教程</a>   |  1星期前  |   <a href="/articletag/39694_new_0_1.html" class="aLightGray" title="内存优化">内存优化</a> · <a href="/articletag/39782_new_0_1.html" class="aLightGray" title="php教程">php教程</a> · <a href="/articletag/39908_new_0_1.html" class="aLightGray" title="后端排查">后端排查</a> · <a href="/articletag/40035_new_0_1.html" class="aLightGray" title="CSV导出">CSV导出</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="fputcsv">fputcsv</a> <a href="javascript:;" class="aLightGray" title="CSV导出">CSV导出</a> <a href="javascript:;" class="aLightGray" title="流式写入">流式写入</a> </span> </dd> <dt class="lineOverflow"> <a href="/article/620086.html" class="aBlack" target="_blank" title="PHP 导出大数据内存耗尽排查:从一次性数组到流式写 CSV">PHP 导出大数据内存耗尽排查:从一次性数组到流式写 CSV</a> </dt> <dd class="cont2"> <span><i class="view"></i>471浏览</span> <span class="collectBtn user_collection" data-id="620086" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/620063.html" class="img_box" title="PHP 文件上传生命周期:从表单校验到存储和过期清理"> <img src="/uploads/20260627/1782562336-php-upload-lifecycle-flow.webp" 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星期前  |   <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/1433_new_0_1.html" class="aLightGray" title="PHP">PHP</a> · <a href="/articletag/39745_new_0_1.html" class="aLightGray" title="后端开发">后端开发</a> · <a href="javascript:;" class="aLightGray" title="php">php</a> <a href="javascript:;" class="aLightGray" title="文件上传">文件上传</a> <a href="javascript:;" class="aLightGray" title="存储路径">存储路径</a> <a href="javascript:;" class="aLightGray" title="过期清理">过期清理</a> <a href="javascript:;" class="aLightGray" title="安全校验">安全校验</a> </span> </dd> <dt class="lineOverflow"> <a href="/article/620063.html" class="aBlack" target="_blank" title="PHP 文件上传生命周期:从表单校验到存储和过期清理">PHP 文件上传生命周期:从表单校验到存储和过期清理</a> </dt> <dd class="cont2"> <span><i class="view"></i>240浏览</span> <span class="collectBtn user_collection" data-id="620063" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/620053.html" class="img_box" title="PHP 8.4 Property Hooks 实战:把 getter/setter 收回到属性声明里"> <img src="/uploads/20260627/1782549759-php84-property-hooks-migration-check.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="PHP 8.4 Property Hooks 实战:把 getter/setter 收回到属性声明里"> </a> <dl> <dd class="cont1"> <span> <a href="/articlelist/19_new_0_1.html" class="aLightGray" title="文章">文章</a> · <a href="/articlelist/84_new_0_1.html" class="aLightGray" title="php教程">php教程</a>   |  1星期前  |   <a href="/articletag/1263_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/39998_new_0_1.html" class="aLightGray" title="PHP8.4">PHP8.4</a> · <a href="/articletag/39999_new_0_1.html" class="aLightGray" title="Property Hooks">Property Hooks</a> · <a href="/articletag/40000_new_0_1.html" class="aLightGray" title="代码重构">代码重构</a> · <a href="javascript:;" class="aLightGray" title="PHP教程">PHP教程</a> <a href="javascript:;" class="aLightGray" title="Getter">Getter</a> <a href="javascript:;" class="aLightGray" title="PHP 8.4">PHP 8.4</a> <a href="javascript:;" class="aLightGray" title="Property Hooks">Property Hooks</a> <a href="javascript:;" class="aLightGray" title="setter">setter</a> </span> </dd> <dt class="lineOverflow"> <a href="/article/620053.html" class="aBlack" target="_blank" title="PHP 8.4 Property Hooks 实战:把 getter/setter 收回到属性声明里">PHP 8.4 Property Hooks 实战:把 getter/setter 收回到属性声明里</a> </dt> <dd class="cont2"> <span><i class="view"></i>464浏览</span> <span class="collectBtn user_collection" data-id="620053" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/620051.html" class="img_box" title="PHP 文件上传后拿不到文件排查:从表单字段到 php.ini 限制"> <img src="/uploads/20260627/1782544110-php-upload-limit-path.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="PHP 文件上传后拿不到文件排查:从表单字段到 php.ini 限制"> </a> <dl> <dd class="cont1"> <span> <a href="/articlelist/19_new_0_1.html" class="aLightGray" title="文章">文章</a> · <a href="/articlelist/84_new_0_1.html" class="aLightGray" title="php教程">php教程</a>   |  1星期前  |   <a href="/articletag/616_new_0_1.html" class="aLightGray" title="文件上传">文件上传</a> · <a href="/articletag/39782_new_0_1.html" class="aLightGray" title="php教程">php教程</a> · <a href="/articletag/39867_new_0_1.html" class="aLightGray" title="问题排查">问题排查</a> · <a href="javascript:;" class="aLightGray" title="php">php</a> <a href="javascript:;" class="aLightGray" title="文件上传">文件上传</a> <a href="javascript:;" class="aLightGray" title="php.ini">php.ini</a> <a href="javascript:;" class="aLightGray" title="$_FILES">$_FILES</a> <a href="javascript:;" class="aLightGray" title="上传错误码">上传错误码</a> </span> </dd> <dt class="lineOverflow"> <a href="/article/620051.html" class="aBlack" target="_blank" title="PHP 文件上传后拿不到文件排查:从表单字段到 php.ini 限制">PHP 文件上传后拿不到文件排查:从表单字段到 php.ini 限制</a> </dt> <dd class="cont2"> <span><i class="view"></i>476浏览</span> <span class="collectBtn user_collection" data-id="620051" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/620034.html" class="img_box" title="PHP Redis 缓存穿透和击穿防护工作流:从空值缓存到互斥锁"> <img src="/uploads/20260618/1781760203-php-redis-cache-flow.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="PHP Redis 缓存穿透和击穿防护工作流:从空值缓存到互斥锁"> </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/220_new_0_1.html" class="aLightGray" title="Redis">Redis</a> · <a href="/articletag/4232_new_0_1.html" class="aLightGray" title="缓存击穿">缓存击穿</a> · <a href="/articletag/5391_new_0_1.html" class="aLightGray" title="缓存穿透">缓存穿透</a> · <a href="/articletag/39782_new_0_1.html" class="aLightGray" title="php教程">php教程</a> · <a href="/articletag/39971_new_0_1.html" class="aLightGray" title="后端性能">后端性能</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> <a href="javascript:;" class="aLightGray" title="TTL">TTL</a> <a href="javascript:;" class="aLightGray" title="缓存击穿">缓存击穿</a> <a href="javascript:;" class="aLightGray" title="空值缓存">空值缓存</a> </span> </dd> <dt class="lineOverflow"> <a href="/article/620034.html" class="aBlack" target="_blank" title="PHP Redis 缓存穿透和击穿防护工作流:从空值缓存到互斥锁">PHP Redis 缓存穿透和击穿防护工作流:从空值缓存到互斥锁</a> </dt> <dd class="cont2"> <span><i class="view"></i>229浏览</span> <span class="collectBtn user_collection" data-id="620034" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> </ul> </div> </div> <div class="mainRight"> <!-- 右侧广告位banner --> <div class="rightContBox" style="margin-top: 0px;"> <div class="rightTit"> <a href="/courselist.html" class="more" title="查看更多">查看更多<i class="iconfont"></i></a> <div class="tit lineOverflow">课程推荐</div> </div> <ul class="lessonRecomRList"> <li> <a href="/course/9.html" class="img_box" target="_blank" title="前端进阶之JavaScript设计模式"> <img src="/uploads/20221222/52fd0f23a454c71029c2c72d206ed815.jpg" onerror="this.onerror='',this.src='/assets/images/moren/morentu.png'" alt="前端进阶之JavaScript设计模式"> </a> <dl> <dt class="lineTwoOverflow"><a href="/course/9.html" target="_blank" class="aBlack" title="前端进阶之JavaScript设计模式">前端进阶之JavaScript设计模式</a></dt> <dd class="cont1 lineTwoOverflow"> 设计模式是开发人员在软件开发过程中面临一般问题时的解决方案,代表了最佳的实践。本课程的主打内容包括JS常见设计模式以及具体应用场景,打造一站式知识长龙服务,适合有JS基础的同学学习。 </dd> <dd class="cont2">543次学习</dd> </dl> </li> <li> <a href="/course/2.html" class="img_box" target="_blank" title="GO语言核心编程课程"> <img src="/uploads/20221221/634ad7404159bfefc6a54a564d437b5f.png" onerror="this.onerror='',this.src='/assets/images/moren/morentu.png'" alt="GO语言核心编程课程"> </a> <dl> <dt class="lineTwoOverflow"><a href="/course/2.html" target="_blank" class="aBlack" title="GO语言核心编程课程">GO语言核心编程课程</a></dt> <dd class="cont1 lineTwoOverflow"> 本课程采用真实案例,全面具体可落地,从理论到实践,一步一步将GO核心编程技术、编程思想、底层实现融会贯通,使学习者贴近时代脉搏,做IT互联网时代的弄潮儿。 </dd> <dd class="cont2">516次学习</dd> </dl> </li> <li> <a href="/course/74.html" class="img_box" target="_blank" title="简单聊聊mysql8与网络通信"> <img src="/uploads/20240103/bad35fe14edbd214bee16f88343ac57c.png" onerror="this.onerror='',this.src='/assets/images/moren/morentu.png'" alt="简单聊聊mysql8与网络通信"> </a> <dl> <dt class="lineTwoOverflow"><a href="/course/74.html" target="_blank" class="aBlack" title="简单聊聊mysql8与网络通信">简单聊聊mysql8与网络通信</a></dt> <dd class="cont1 lineTwoOverflow"> 如有问题加微信:Le-studyg;在课程中,我们将首先介绍MySQL8的新特性,包括性能优化、安全增强、新数据类型等,帮助学生快速熟悉MySQL8的最新功能。接着,我们将深入解析MySQL的网络通信机制,包括协议、连接管理、数据传输等,让 </dd> <dd class="cont2">500次学习</dd> </dl> </li> <li> <a href="/course/57.html" class="img_box" target="_blank" title="JavaScript正则表达式基础与实战"> <img src="/uploads/20221226/bbe4083bb3cb0dd135fb02c31c3785fb.jpg" onerror="this.onerror='',this.src='/assets/images/moren/morentu.png'" alt="JavaScript正则表达式基础与实战"> </a> <dl> <dt class="lineTwoOverflow"><a href="/course/57.html" target="_blank" class="aBlack" title="JavaScript正则表达式基础与实战">JavaScript正则表达式基础与实战</a></dt> <dd class="cont1 lineTwoOverflow"> 在任何一门编程语言中,正则表达式,都是一项重要的知识,它提供了高效的字符串匹配与捕获机制,可以极大的简化程序设计。 </dd> <dd class="cont2">487次学习</dd> </dl> </li> <li> <a href="/course/28.html" class="img_box" target="_blank" title="从零制作响应式网站—Grid布局"> <img src="/uploads/20221223/ac110f88206daeab6c0cf38ebf5fe9ed.jpg" onerror="this.onerror='',this.src='/assets/images/moren/morentu.png'" alt="从零制作响应式网站—Grid布局"> </a> <dl> <dt class="lineTwoOverflow"><a href="/course/28.html" target="_blank" class="aBlack" title="从零制作响应式网站—Grid布局">从零制作响应式网站—Grid布局</a></dt> <dd class="cont1 lineTwoOverflow"> 本系列教程将展示从零制作一个假想的网络科技公司官网,分为导航,轮播,关于我们,成功案例,服务流程,团队介绍,数据部分,公司动态,底部信息等内容区块。网站整体采用CSSGrid布局,支持响应式,有流畅过渡和展现动画。 </dd> <dd class="cont2">485次学习</dd> </dl> </li> </ul> </div> <div class="rightContBox"> <div class="rightTit"> <a href="/ai.html" class="more" title="查看更多">查看更多<i class="iconfont"></i></a> <div class="tit lineOverflow">AI推荐</div> </div> <ul class="lessonRecomRList"> <li> <a href="/ai/13109.html" target="_blank" title="ljg-skills - "Prompt之神"李继刚开源的 AI 技能集" class="img_box"> <img src="/uploads/ai/20260616/ljg-skills-icon-8bbe1468e5.png" onerror="this.onerror='',this.src='/assets/images/moren/morentu.png'" alt="ljg-skills - "Prompt之神"李继刚开源的 AI 技能集" style="object-fit:cover;width:100%;height:100%;"> </a> <dl> <dt class="lineTwoOverflow"><a href="/ai/13109.html" class="aBlack" target="_blank" title="ljg-skills">ljg-skills</a></dt> <dd class="cont1 lineTwoOverflow"> ljg-skills 是李继刚开源的 AI 技能与提示词集合,面向大模型使用者整理了一批可复用的 prompt、角色设定和任务技能模板,适合用于学习提示词设计、搭建个人 AI 工作流和沉淀团队常用智能体能力。 </dd> <dd class="cont2">4353次使用</dd> </dl> </li> <li> <a href="/ai/13108.html" target="_blank" title="MELO音乐 - AI 音乐生成平台,支持多模态创作能力" class="img_box"> <img src="/uploads/ai/20260616/melo-icon-10bf590762.png" onerror="this.onerror='',this.src='/assets/images/moren/morentu.png'" alt="MELO音乐 - AI 音乐生成平台,支持多模态创作能力" style="object-fit:cover;width:100%;height:100%;"> </a> <dl> <dt class="lineTwoOverflow"><a href="/ai/13108.html" class="aBlack" target="_blank" title="MELO音乐">MELO音乐</a></dt> <dd class="cont1 lineTwoOverflow"> MELO音乐是一站式AI视频与音乐制作助手,对标suno, udio的高品质体验。提供伴奏生成、原创写词、无损导出、哼唱识曲、混音变声等全套音频与短视频编辑工具。无论是流行Kpop、电音说唱、民谣古风、摇滚儿歌还是商用轻音乐,MELO为你免费谱曲,轻松做同款! </dd> <dd class="cont2">4034次使用</dd> </dl> </li> <li> <a href="/ai/13107.html" target="_blank" title="UniScribe - AI 免费在线音视频转文字平台" class="img_box"> <img src="/uploads/ai/20260616/uniscribe-icon-3c88366a15.png" onerror="this.onerror='',this.src='/assets/images/moren/morentu.png'" alt="UniScribe - AI 免费在线音视频转文字平台" style="object-fit:cover;width:100%;height:100%;"> </a> <dl> <dt class="lineTwoOverflow"><a href="/ai/13107.html" class="aBlack" target="_blank" title="UniScribe">UniScribe</a></dt> <dd class="cont1 lineTwoOverflow"> UniScribe 是一款 AI 音视频转文字与内容整理工具,支持上传音频、视频文件或粘贴 YouTube 链接,自动生成转写文本、摘要、思维导图和关键问题,并支持多格式导出,适合会议记录、课程学习、访谈整理和内容创作复盘。 </dd> <dd class="cont2">4022次使用</dd> </dl> </li> <li> <a href="/ai/13106.html" target="_blank" title="剧云 - 免费 AI 智能中文剧本创作平台" class="img_box"> <img src="/uploads/ai/20260615/d36c7176-icon-2b0cd581ce.png" onerror="this.onerror='',this.src='/assets/images/moren/morentu.png'" alt="剧云 - 免费 AI 智能中文剧本创作平台" style="object-fit:cover;width:100%;height:100%;"> </a> <dl> <dt class="lineTwoOverflow"><a href="/ai/13106.html" class="aBlack" target="_blank" title="剧云">剧云</a></dt> <dd class="cont1 lineTwoOverflow"> 剧云是专业中文剧本创作平台,安全稳定运行十余年,集成AI编剧、剧本医生审核、人物小传、剧情关系图、大纲编写、多人协作、Word导入导出、版权管控功能,数据安全防护,轻松高效创作剧本。 </dd> <dd class="cont2">4206次使用</dd> </dl> </li> <li> <a href="/ai/13105.html" target="_blank" title="万象有声 - AI 一站式有声内容创作平台" class="img_box"> <img src="/uploads/ai/20260615/50267bac-icon-c146b001b5.png" onerror="this.onerror='',this.src='/assets/images/moren/morentu.png'" alt="万象有声 - AI 一站式有声内容创作平台" style="object-fit:cover;width:100%;height:100%;"> </a> <dl> <dt class="lineTwoOverflow"><a href="/ai/13105.html" class="aBlack" target="_blank" title="万象有声">万象有声</a></dt> <dd class="cont1 lineTwoOverflow"> 万象有声,一个专为有声创作者打造的新一代智能有声内容创作平台。平台提供专业的智能拆章、智能画本编辑、AI配音、AI生成音效、后期制作、智能对轨、智能审听等有声创作全流程工具,可以帮助创作者高效、低成本创作出引人入胜的有声作品。立即体验,让有声书制作更简单! </dd> <dd class="cont2">4176次使用</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/616777.html" class="aBlack" title="宝塔配置Ruby环境:RVM+Nginx反代教程">宝塔配置Ruby环境:RVM+Nginx反代教程</a></dt> <dd> <span class="left">2026-05-29</span> <span class="right">501浏览</span> </dd> </dl> </li> <li> <dl> <dt class="lineTwoOverflow"><a href="/article/616127.html" class="aBlack" title="unset函数作用范围详解">unset函数作用范围详解</a></dt> <dd> <span class="left">2026-05-29</span> <span class="right">501浏览</span> </dd> </dl> </li> <li> <dl> <dt class="lineTwoOverflow"><a href="/article/598283.html" class="aBlack" title="VS Code配置Xdebug教程:PHP调试技巧全解析">VS Code配置Xdebug教程:PHP调试技巧全解析</a></dt> <dd> <span class="left">2026-05-13</span> <span class="right">501浏览</span> </dd> </dl> </li> <li> <dl> <dt class="lineTwoOverflow"><a href="/article/591780.html" class="aBlack" title="PHPEnv安装PhpMyAdmin教程详解">PHPEnv安装PhpMyAdmin教程详解</a></dt> <dd> <span class="left">2026-05-07</span> <span class="right">501浏览</span> </dd> </dl> </li> <li> <dl> <dt class="lineTwoOverflow"><a href="/article/591040.html" class="aBlack" title="TelegramBotWebApp数据验证技巧">TelegramBotWebApp数据验证技巧</a></dt> <dd> <span class="left">2026-05-06</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="//17golang.com/article/612817.html"/> <input type="hidden" name="__token__" value="98bc630c46677fe7af173292f4cc5747" /> <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="//17golang.com/article/612817.html"/> <input type="hidden" name="__token__" value="98bc630c46677fe7af173292f4cc5747" /> <div class="form-group" style="height:70px;"> <input type="text" name="email" id="email2" data-rule="required;email" class="form-control" placeholder="邮箱"> </div> <div class="form-group" style="height:70px;"> <input type="text" id="username" name="username" data-rule="required;username" class="form-control" placeholder="用户名必须3-30个字符"> </div> <div class="form-group" style="height:70px;"> <input type="password" id="password2" name="password" data-rule="required;password" class="form-control" placeholder="密码必须6-30个字符"> </div> <div class="codeBox" style="height:70px;"> <div class="form-group" style="height:70px; width:205px; float: left;"> <input type="text" name="captcha" class="form-control" placeholder="验证码" data-rule="required;length(4)" /> </div> <span class="input-group-btn" style="padding:0;border:none;"> <img src="/captcha.html" width="100" height="45" onclick="this.src = '/captcha.html?r=' + Math.random();"/> </span> </div> <div class="loginBtn"> <button type="submit">注册</button> </div> </form> </div> </div> </div> <div class="beforeLoginTip">登录即同意 <a href="https://www.17golang.com/about/3.html" target="_blank" class="aBlue" title="用户协议">用户协议</a> 和 <a href="https://www.17golang.com/about/4.html" target="_blank" class="aBlue" title="隐私政策">隐私政策</a></div> </div> <!-- 重置密码 --> <div class="loginInfo passwordForget"> <div class="closeIcon" onclick="$('.popupBg').hide();"></div> <div class="returnLogin cursorPointer" onclick="$('.passwordForget').hide();$('.passwordLogin').show();">返回登录</div> <div class="passwordInfo"> <ul class="logintabs selfTabMenu"> <li class="selfTabItem">重置密码</li> </ul> <div class="selfTabContBox"> <div class="selfTabCont"> <form id="resetpwd-form" class="form-horizontal form-layer nice-validator n-default n-bootstrap form" method="POST" action="/api/user/resetpwd.html" novalidate="novalidate"> <div style="height:70px;"> <input type="text" class="form-control" id="email" name="email" value="" placeholder="输入邮箱" aria-invalid="true"> </div> <div class="codeBox" style="height:70px;"> <div class="form-group" style="height:70px; width:205px; float: left;"> <input type="text" name="captcha" class="form-control" placeholder="验证码" /> </div> <span class="input-group-btn" style="padding:0;border:none;"> <a href="javascript:;" class="btn btn-primary btn-captcha cursorPointer" style="background: #2080F8; border-radius: 4px; color: #fff; padding: 12px; position: absolute;" data-url="/api/ems/send.html" data-type="email" data-event="resetpwd">发送验证码</a> </span> </div> <input type="password" class="form-control" id="newpassword" name="newpassword" value="" placeholder="请输入6-18位密码"> <div class="loginBtn mt25"> <button type="submit">重置密码</button> </div> </form> </div> </div> </div> </div> </div> </div> <script src="/assets/js/juejin-theme.js?v=20260613b" defer></script> <script> var _hmt = _hmt || []; (function() { var hm = document.createElement("script"); hm.src = "https://hm.baidu.com/hm.js?3dc5666f6478c7bf39cd5c91e597423d"; hm.async = true; var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(hm, s); })(); </script> <script src="/assets/js/frontend/common.js"></script> </body> </html>