微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

教你php如何实现验证码

验证码在表单实现越来越多了,但是用js的写的验证码,总觉得不方便,所以学习了下PHP实现的验证码。好吧,其实是没有事情干,但是又不想浪费时间,所以学习了下PHP实现验证码。正所谓,技多不压身。而且,也可以封装成一个函数,以后使用的时候也是很方便的,当然现在未封装。

现在来说说简单的纯数字验证码吧。

如果是初学者,建议按照我代码的注释 //数字 一步步来。最简单的方法,还是把整个代码复制走了。

新建一个captcha.PHP

设置session,必须处于脚本最顶部 session_start();

$image = imagecreatetruecolor(100,30); //1>设置验证码图片大小的函数
//5>设置验证码颜色 imagecolorallocate(int im,int red,int green,int blue);
$bgcolor = imagecolorallocate($image,255,255); //#ffffff
//6>区域填充 int imagefill(int im,int x,int y,int col) (x,y) 所在的区域着色,col 表示欲涂上的颜色
imagefill($image,$bgcolor);
//10>设置变量
$captcha_code = "";
//7>生成随机数字
for($i=0;$i<4;$i++){
//设置字体大小
$fontsize = 6;
//设置字体颜色,随机颜色
$fontcolor = imagecolorallocate($image,rand(0,120),120)); //0-120深颜色
//设置数字
$fontcontent = rand(0,9);
//10>.=连续定义变量
$captcha_code .= $fontcontent;
//设置坐标
$x = ($i*100/4)+rand(5,10);
$y = rand(5,10);

imagestring($image,$fontsize,$x,$y,$fontcontent,$fontcolor);

}
//10>存到session
$_SESSION['authcode'] = $captcha_code;
//8>增加干扰元素,设置雪花点
for($i=0;$i<200;$i++){
//设置点的颜色,50-200颜色比数字浅,不干扰阅读
$pointcolor = imagecolorallocate($image,rand(50,200),200));
//imagesetpixel — 画一个单一像素
imagesetpixel($image,rand(1,99),29),$pointcolor);
}
//9>增加干扰元素,设置横线
for($i=0;$i<4;$i++){
//设置线的颜色
$linecolor = imagecolorallocate($image,rand(80,220),220));
//设置线,两点一线
imageline($image,$linecolor);
}

//2>设置头部,image/png
header('Content-Type: image/png');
//3>imagepng() 建立png图形函数
imagepng($image);
//4>imagedestroy() 结束图形函数 销毁$image
imagedestroy($image);

接着就是静态页的代码了:index.html 

rush:xhtml;"> <Meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> 确认验证码title> head> <body> <form method="post" action="./form.<a href="https://www.jb51.cc/tag/PHP/" target="_blank" class="keywords">PHP</a>"> <p>验证码: <img id="captcha_img" border='1' src='./captcha.php?r=echo rand(); ?>' style="width:100px; height:30px" /> <a href="javascript:void(0)" onclick="document.getElementById('captcha_img').src='./captcha.php?r='+Math.random()">换一个?a> p> <P>请输入验证码:<input type="text" name='authcode' value=''/>p> <p><input type='submit' value='提交' style='padding:6px 5px;'/>p> </body> </html> </pre> </div> <p>从index.html可以看到,提交的表单是到form.<a href="https://www.jb51.cc/tag/PHP/" target="_blank" class="keywords">PHP</a>的,所以还要有<a href="https://www.jb51.cc/tag/yige/" target="_blank" class="keywords">一个</a>判断的form.<a href="https://www.jb51.cc/tag/PHP/" target="_blank" class="keywords">PHP</a><a href="https://www.jb51.cc/tag/daima/" target="_blank" class="keywords">代码</a>:</p> <div class="jb51code"> <pre class="b<a href="https://www.jb51.cc/tag/rush/" target="_blank" class="keywords">rush</a>:<a href="https://www.jb51.cc/tag/PHP/" target="_blank" class="keywords">PHP</a>;"> <a href="https://www.jb51.cc/tag/PHP/" target="_blank" class="keywords">PHP</a> header("Content-Type:text/html;charset=utf-8"); //设置<a href="https://www.jb51.cc/tag/toubuxinxi/" target="_blank" class="keywords">头部信息</a> //isset()<a href="https://www.jb51.cc/tag/jiancebianliang/" target="_blank" class="keywords">检测变量</a>是否设置 if(isset($_REQUEST['authcode'])){ session_start(); //strtolower()小写<a href="https://www.jb51.cc/tag/hanshu/" target="_blank" class="keywords">函数</a> if(strtolower($_REQUEST['authcode'])== $_SESSION['authcode']){ //<a href="https://www.jb51.cc/tag/tiaozhuanye/" target="_blank" class="keywords">跳转页</a>面 echo "<script language=\"javascript\">"; echo "document.location=\"./form.<a href="https://www.jb51.cc/tag/PHP/" target="_blank" class="keywords">PHP</a>\""; echo "</script>"; }else{ //<a href="https://www.jb51.cc/tag/tishi/" target="_blank" class="keywords">提示</a>以及<a href="https://www.jb51.cc/tag/tiaozhuanye/" target="_blank" class="keywords">跳转页</a>面 echo "<script language=\"javascript\">"; echo "alert('输入<a href="https://www.jb51.cc/tag/cuowu/" target="_blank" class="keywords">错误</a>!');"; echo "document.location=\"./form.<a href="https://www.jb51.cc/tag/PHP/" target="_blank" class="keywords">PHP</a>\""; echo "</script>"; } exit(); } </pre> </div> <p><a href="https://www.jb51.cc/tag/xianshi/" target="_blank" class="keywords">显示</a><a href="https://www.jb51.cc/tag/yemian/" target="_blank" class="keywords">页面</a>如下: </p> <p style="text-align: center"><img id="theimg" alt="" onclick="window.open(this.src)" src="https://files.jb51.cc/file_images/article/201601/2016120102030634.jpg?2016020102037" /></p> <p>那么,纯数字的实现了,数字加英文的也应该不难了。要<a href="https://www.jb51.cc/tag/xiugai/" target="_blank" class="keywords">修改</a>的<a href="https://www.jb51.cc/tag/daima/" target="_blank" class="keywords">代码</a> 只是在 captcha.<a href="https://www.jb51.cc/tag/PHP/" target="_blank" class="keywords">PHP</a> 将 //7><a href="https://www.jb51.cc/tag/shengcheng/" target="_blank" class="keywords">生成</a><a href="https://www.jb51.cc/tag/suiji/" target="_blank" class="keywords">随机</a>数字 <a href="https://www.jb51.cc/tag/xiugai/" target="_blank" class="keywords">修改</a>成 //7><a href="https://www.jb51.cc/tag/shengcheng/" target="_blank" class="keywords">生成</a><a href="https://www.jb51.cc/tag/suiji/" target="_blank" class="keywords">随机</a>的字母和数字,如果你真的很可爱的就<a href="https://www.jb51.cc/tag/xiugai/" target="_blank" class="keywords">修改</a>这几个字就认为可以实现的话,那么祝贺你,你永远保持快乐。脑残儿童欢乐多。</p> <p>废话不多说了,拉<a href="https://www.jb51.cc/tag/daima/" target="_blank" class="keywords">代码</a>吧。</p> <div class="jb51code"> <pre class="brush:php;"> php //10>设置session,$bgcolor); //10>设置变量 $captcha_code = ""; //7><a href="https://www.jb51.cc/tag/shengcheng/" target="_blank" class="keywords">生成</a><a href="https://www.jb51.cc/tag/suiji/" target="_blank" class="keywords">随机</a>的字母和数字 for($i=0;$i<4;$i++){ //设置字体大小 $fontsize = 8; //设置字体颜色,随机颜色 $fontcolor = imagecolorallocate($image,120)); //0-120深颜色 //设置需要随机取的值,去掉容易出错的值如0和o $data ='abcdefghigkmnpqrstuvwxy3456789'; //取出值,字符串截取方法 strlen获取字符串长度 $fontcontent = substr($data,strlen($data)),1); //10>.=连续定义变量 $captcha_code .= $fontcontent; //设置坐标 $x = ($i*100/4)+rand(5,$linecolor); } <p>//2>设置头部,image/png<br /> header('Content-Type: image/png');<br /> //3>imagepng() 建立png图形<a href="https://www.jb51.cc/tag/hanshu/" target="_blank" class="keywords">函数</a><br /> imagepng($image);<br /> //4>imagedestroy() 结束图形<a href="https://www.jb51.cc/tag/hanshu/" target="_blank" class="keywords">函数</a> 销毁$image<br /> imagedestroy($image);</p> </pre> </div> <p>其他的两个<a href="https://www.jb51.cc/tag/yemian/" target="_blank" class="keywords">页面</a>,不许要<a href="https://www.jb51.cc/tag/xiugai/" target="_blank" class="keywords">修改</a>。</p> <p style="text-align: center"><p class="pic_center"><img id="theimg" alt="" onclick="window.open(this.src)" src="https://files.jb51.cc/file_images/article/201601/2016120102055355.png?201602010211" /></p></p> <p>一般而言,现在就已经够用了。但是就像动漫一样,总会有番外。</p> <p>那么,我们来个汉字的番外吧。其实我也准备将汉字的验证码放到我的毕业设计里面,虽然现在很流行滑动验证码,但是本人毕竟不是专门学习js的。</p> <p>而且,还可以和答辩的老师说,我们验证码不需要素材,连<a href="https://www.jb51.cc/tag/tupian/" target="_blank" class="keywords">图片</a>也是<a href="https://www.jb51.cc/tag/shengcheng/" target="_blank" class="keywords">生成</a>的,用自己的知识装13,也没有设么的。</p> <div class="jb51code"> <pre class="brush:php;"> php //11>设置session,必须处于脚本最顶部 session_start(); <p>//1>设置验证码<a href="https://www.jb51.cc/tag/tupian/" target="_blank" class="keywords">图片</a>大小的<a href="https://www.jb51.cc/tag/hanshu/" target="_blank" class="keywords">函数</a><br /> $image = imagecreatetruecolor(200,60);<br /> //5>设置验证码颜色 imagecolorallocate(int im,$bgcolor);<br /> //7>设置ttf字体<br /> $fontface = 'FZYTK.TTF';<br /> //7>设置字库,实现简单的数字储备<br /> $str='天地不仁以万物为刍狗圣人不仁以百姓为刍狗这句经常出现在控诉暴君暴政上地残暴不仁把万物都当成低贱的猪狗来看待而那些高高在上的所谓圣人们也没两样还不是把我们老百姓也当成猪狗不如的东西但实在正取的解读是地不情感用事对万物一视同仁圣人不情感用事对百姓一视同仁执子之手与子偕老当男女主人公含情脉脉看着对方说了句执子之手与子偕老女方泪眼朦胧含羞地回一句讨厌啦这样的情节我们是不是见过很多但是我们来看看这句的原句死生契阔与子成说执子之手与子偕老于嗟阔兮不我活兮于嗟洵兮不我信兮意思是说战士之<a href="https://www.jb51.cc/tag/jiande/" target="_blank" class="keywords">间的</a>约定说要一起死现在和我约定的人都走了我怎么活啊赤裸裸的兄弟江湖战友友谊啊形容好基友的基情比男女之<a href="https://www.jb51.cc/tag/jiande/" target="_blank" class="keywords">间的</a>爱情要合适很多吧';<br /> //str_split()切割字符串为<a href="https://www.jb51.cc/tag/yige/" target="_blank" class="keywords">一个</a>数组,<a href="https://www.jb51.cc/tag/yige/" target="_blank" class="keywords">一个</a><a href="https://www.jb51.cc/tag/zhongwen/" target="_blank" class="keywords">中文</a>在utf_8为3个字符<br /> $strdb = str_split($str,3);<br /> //>11<br /> $captcha_code = '';<br /> //8><a href="https://www.jb51.cc/tag/shengcheng/" target="_blank" class="keywords">生成</a><a href="https://www.jb51.cc/tag/suiji/" target="_blank" class="keywords">随机</a>的汉子<br /> for($i=0;$i<4;$i++){<br /> //设置字体颜色,随机颜色<br /> $fontcolor = imagecolorallocate($image,120)); //0-120深颜色<br /> //随机选取中文<br /> $in = rand(0,count($strdb));<br /> $cn = $strdb[$in];<br /> //将中文记录到将保存到session的字符串中<br /> $captcha_code .= $cn;<br /> /<em>imagettftext (resource $image,float $size,float $angle,int $x,int $y,int $color,string $fontfile,string $text ) 幕布 ,尺寸,角度,坐标,颜色,字体路径,文本字符串<br /> mt_rand()生成更好的随机数,比rand()快四倍</em>/<br /> imagettftext($image,mt_rand(20,24),mt_rand(-60,60),(40*$i+20),mt_rand(30,35),$fontcolor,$fontface,$cn);<br /> }<br /> //11>存到session<br /> $_SESSION['authcode'] = $captcha_code;<br /> //9><a href="https://www.jb51.cc/tag/zengjia/" target="_blank" class="keywords">增加</a>干扰元素,设置点<br /> for($i=0;$i<200;$i++){<br /> //设置点的颜色,50-200颜色比数字浅,不干扰阅读<br /> $pointcolor = imagecolorallocate($image,199),59),$pointcolor);<br /> }<br /> //10><a href="https://www.jb51.cc/tag/zengjia/" target="_blank" class="keywords">增加</a>干扰元素,设置线<br /> for($i=0;$i<4;$i++){<br /> //设置线的颜色<br /> $linecolor = imagecolorallocate($image,$linecolor);<br /> }</p> <p>//2>设置头部,image/png<br /> header('Content-Type: image/png');<br /> //3>imagepng() 建立png图形<a href="https://www.jb51.cc/tag/hanshu/" target="_blank" class="keywords">函数</a><br /> imagepng($image);<br /> //4>imagedestroy() 结束图形<a href="https://www.jb51.cc/tag/hanshu/" target="_blank" class="keywords">函数</a> 销毁$image<br /> imagedestroy($image);</p> </pre> </div> <p><a href="https://www.jb51.cc/tag/xiaoguo/" target="_blank" class="keywords">效果</a>图如下</p> <p style="text-align: center"><p class="pic_center"><img id="theimg" alt="" onclick="window.open(this.src)" src="https://files.jb51.cc/file_images/article/201601/2016120102115075.png?2016020102125" /></p></p> <p style="text-align: left">以上就是本文的全部<a href="https://www.jb51.cc/tag/neirong/" target="_blank" class="keywords">内容</a>,帮助大家实现<a href="https://www.jb51.cc/tag/PHP/" target="_blank" class="keywords">PHP</a><a href="https://www.jb51.cc/tag/shuziyanzheng/" target="_blank" class="keywords">数字验证</a>码、<a href="https://www.jb51.cc/tag/PHP/" target="_blank" class="keywords">PHP</a>字母验证码、<a href="https://www.jb51.cc/tag/PHP/" target="_blank" class="keywords">PHP</a>汉字验证码,希望对大家的学习有所帮助。</p><ins class="adsbygoogle" style="display:inline-block;width:780px;height:90px" data-ad-client="ca-pub-4605373693034661" data-ad-slot="4286417769"></ins> <script> (adsbygoogle = window.adsbygoogle || []).push({}); </script> <p class="small text-muted">版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。</p> </div><div class="topcard-tags"><a href="https://www.jb51.cc/tag/phpyanzhengma/" class="tag_link" target="_blank">php验证码</a></div><ul class="list-group"> <li class="list-group-item"><a href="https://www.jb51.cc/php/20479.html" title="CodeIgniter辅助之第三方类库third_party用法分析">上一篇:CodeIgniter辅助之第三方类库third</a><a href="https://www.jb51.cc/php/20477.html" title="CI(CodeIgniter)模型用法实例分析" class="text-muted pull-right">下一篇:CI(CodeIgniter)模型用法实例分析</a> </li> </ul> </div> </div> </div> <div class="row row-sm"> <div class="col-sm-12 col-md-12 col-lg-12"> <div class="card"> <h4>相关推荐</h4> <hr /><div class="list_con"> <a href="https://www.jb51.cc/php/4739043.html" title="vue+thinkphp5实现微信扫码支付(NATIVE支付)"><div class="title">vue+thinkphp5实现微信扫码支付(NATIVE支付)</div> <div class="summary">统一支付是JSAPI/NATIVE/APP各种支付场景下生成支付订单,返回预支付订单号的接口,目前微信支付所有场景均使用这一接口。下面介绍的是其中NATIVE的支付实现流程与PC端实现扫码支付流程</div> <time class="summary">作者:我恨bug 时间:2024-07-30</time> </a> </div><div class="list_con"> <a href="https://www.jb51.cc/php/4739042.html" title="uniapp+thinkphp5实现微信扫码支付(APP支付)"><img class="lazy" src="https://www.jb51.cc/images/np.jpg" data-original="https://www.jb51.cc/res/2024/07-30/10/32d06eca1830b39e35547ff639b7b95b.png" title="" width="160" height="90" style="float:right;margin-left:30px;" /><div class="title">uniapp+thinkphp5实现微信扫码支付(APP支付)</div> <div class="summary">统一支付是JSAPI/NATIVE/APP各种支付场景下生成支付订单,返回预支付订单号的接口,目前微信支付所有场景均使用这一接口。下面介绍的是其中APP的支付的配置与实现流程</div> <time class="summary">作者:我恨bug 时间:2024-07-30</time> </a> </div><div class="list_con"> <a href="https://www.jb51.cc/php/4739041.html" title="uniapp+thinkphp5实现微信登录"><img class="lazy" src="https://www.jb51.cc/images/np.jpg" data-original="https://www.jb51.cc/res/2024/07-30/10/3d907355e295604aef536bba5b45dd7d.png" title="" width="160" height="90" style="float:right;margin-left:30px;" /><div class="title">uniapp+thinkphp5实现微信登录</div> <div class="summary">前言 之前做了微信登录,所以总结一下微信授权登录并获取用户信息这个功能的开发流程。 配置 1.首先得在微信公众平台申请一下微信小程序账号并获取到小程序的AppID和AppSecret https://mp.weixin.qq.com/cgi-bin/loginpage?url=%2Fwxamp%2F</div> <time class="summary">作者:我恨bug 时间:2024-07-30</time> </a> </div><div class="list_con"> <a href="https://www.jb51.cc/php/4739040.html" title="【PHP】关于fastadmin框架中使用with进行连表查询时setEagerlyType字段的理解"><img class="lazy" src="https://www.jb51.cc/images/np.jpg" data-original="https://www.jb51.cc/res/2024/07-30/10/fc29e4e4eba385bc042444571f518ef6.png" title="" width="160" height="90" style="float:right;margin-left:30px;" /><div class="title">【PHP】关于fastadmin框架中使用with进行连表查询时setEagerlyType字段的理解</div> <div class="summary">FastAdmin是我第一个接触的后台管理系统框架。FastAdmin是一款开源且免费商用的后台开发框架,它基于ThinkPHP和Bootstrap两大主流技术构建的极速后台开发框架,它有着非常完善且强大的功能和便捷的开发体验,使我逐渐喜欢上了它。</div> <time class="summary">作者:我恨bug 时间:2024-07-30</time> </a> </div><div class="list_con"> <a href="https://www.jb51.cc/php/4739039.html" title="【workerman】uniapp+thinkPHP5使用GatewayWorker实现实时通讯"><img class="lazy" src="https://www.jb51.cc/images/np.jpg" data-original="https://www.jb51.cc/res/2024/07-30/10/e6971fb86d3ee30a4466e87826da43d8.png" title="" width="160" height="90" style="float:right;margin-left:30px;" /><div class="title">【workerman】uniapp+thinkPHP5使用GatewayWorker实现实时通讯</div> <div class="summary">之前公司需要一个内部的通讯软件,就叫我做一个。通讯软件嘛,就离不开通讯了,然后我就想到了长连接。这里本人用的是GatewayWorker框架。</div> <time class="summary">作者:我恨bug 时间:2024-07-30</time> </a> </div><div class="list_con"> <a href="https://www.jb51.cc/php/4739038.html" title="uniapp+thinkphp5实现微信支付(JSAPI支付)"><div class="title">uniapp+thinkphp5实现微信支付(JSAPI支付)</div> <div class="summary">统一支付是JSAPI/NATIVE/APP各种支付场景下生成支付订单,返回预支付订单号的接口,目前微信支付所有场景均使用这一接口。下面介绍的是其中JSAPI的支付实现流程</div> <time class="summary">作者:我恨bug 时间:2024-07-30</time> </a> </div><div class="list_con"> <a href="https://www.jb51.cc/php/4676831.html" title="服务器优化必备:深入了解PHP8底层开发原理"><img class="lazy" src="https://www.jb51.cc/images/np.jpg" data-original="https://www.jb51.cc/res/2023/09-11/01/a3322fb8f7853a71e573cffcd7960431.jpg" title="" width="160" height="90" style="float:right;margin-left:30px;" /><div class="title">服务器优化必备:深入了解PHP8底层开发原理</div> <div class="summary">服务器优化必备:深入了解PHP8底层开发原理</div> <time class="summary">作者:编程之家 时间:2023-09-11</time> </a> </div><div class="list_con"> <a href="https://www.jb51.cc/php/4676830.html" title="Golang的网络编程:如何快速构建高性能的网络应用?"><img class="lazy" src="https://www.jb51.cc/images/np.jpg" data-original="https://www.jb51.cc/res/2023/09-11/01/891786da89034c5ca51a30e1cd0b54ec.jpg" title="" width="160" height="90" style="float:right;margin-left:30px;" /><div class="title">Golang的网络编程:如何快速构建高性能的网络应用?</div> <div class="summary">Golang的网络编程:如何快速构建高性能的网络应用?</div> <time class="summary">作者:编程之家 时间:2023-09-11</time> </a> </div><div class="list_con"> <a href="https://www.jb51.cc/php/4676829.html" title="Golang和其他编程语言的对比:为什么它的开发效率更高?"><img class="lazy" src="https://www.jb51.cc/images/np.jpg" data-original="https://www.jb51.cc/res/2023/09-11/01/b4ba3ff14a96ec8962f292ee854b63d9.jpg" title="" width="160" height="90" style="float:right;margin-left:30px;" /><div class="title">Golang和其他编程语言的对比:为什么它的开发效率更高?</div> <div class="summary">Golang和其他编程语言的对比:为什么它的开发效率更高?</div> <time class="summary">作者:编程之家 时间:2023-09-11</time> </a> </div><div class="list_con"> <a href="https://www.jb51.cc/php/4676828.html" title="PHP8底层开发原理揭秘:如何利用新特性创建出色的Web应用"><img class="lazy" src="https://www.jb51.cc/images/np.jpg" data-original="https://www.jb51.cc/res/2023/09-11/01/6932d37a1c1dfaec001b928e40ac7216.jpg" title="" width="160" height="90" style="float:right;margin-left:30px;" /><div class="title">PHP8底层开发原理揭秘:如何利用新特性创建出色的Web应用</div> <div class="summary">PHP8底层开发原理揭秘:如何利用新特性创建出色的Web应用</div> <time class="summary">作者:编程之家 时间:2023-09-11</time> </a> </div></div> </div> </div> </div> <div class="col-sm-12 col-md-12 col-lg-3"> <!-- row --> <div class="row row-sm"> <div class="col-sm-12 col-md-12 col-lg-12"> <div class="card"> <!-- jb51-article-300x600 --> <ins class="adsbygoogle" style="display:inline-block;width:300px;height:600px" data-ad-client="ca-pub-4605373693034661" data-ad-slot="7541177540"></ins> <script> (adsbygoogle = window.adsbygoogle || []).push({}); </script> </div> </div> </div> <!-- row end --> <!-- row --> <div class="row row-sm"> <div class="col-sm-12 col-md-12 col-lg-12"> <div class="card" style="padding:20px;"> <label class="main-content-label ">小编推荐</label><div class="entry-img"><img src="https://www.jb51.cc/res/2023/06-29/12/fa513c17761076a6649593e2bd17f268.jpg" height="150" width="100%"><div class="entry-wrap"><a href="https://www.jb51.cc/mp/4606010.html" title="苹果市值2025年有望达4万亿美元" >苹果市值2025年有望达4万亿美元</a> </div></div><ul class="n-list"><li><a href="https://www.jb51.cc/mp/4821027.html" title="红魔10 Pro手机入网:电竞芯+6500mAh超大电池" >• 红魔10 Pro手机入网:电竞芯+6500mAh超</a></li><li><a href="https://www.jb51.cc/mp/4821026.html" title="iPhone 16系列价格最高直降1000元 保值力显著下降" >• iPhone 16系列价格最高直降1000元 保值</a></li><li><a href="https://www.jb51.cc/mp/4821025.html" title="文石Poke6电子书阅读器预售:支持TF卡拓展 899元起" >• 文石Poke6电子书阅读器预售:支持TF卡拓</a></li><li><a href="https://www.jb51.cc/mp/4821024.html" title="iPad mini 7仍维持20W快充标准:比亚迪代工" >• iPad mini 7仍维持20W快充标准:比亚迪</a></li><li><a href="https://www.jb51.cc/mp/4821023.html" title="吉利星座在轨卫星达30颗 可24小时覆盖全球90%区域" >• 吉利星座在轨卫星达30颗 可24小时覆盖全</a></li><li><a href="https://www.jb51.cc/mp/4821022.html" title="ColorOS 15发布 首发搭载OPPO Find X8和一加13" >• ColorOS 15发布 首发搭载OPPO Find X8和</a></li><li><a href="https://www.jb51.cc/mp/4821021.html" title="一加13外观曝光:首发第二代2K东方屏幕" >• 一加13外观曝光:首发第二代2K东方屏幕</a></li></ul> </div> </div> </div> <!-- row end --> <div class="row row-sm"> <div class="col-sm-12 col-md-12 col-lg-12"> <div class="card"> <label class="main-content-label ">热门标签<a href="https://www.jb51.cc/all" class="pull-right">更多</a> </label> <div class="topcard-tags"><a href="https://www.jb51.cc/tag/python/" title="python">python</a><a href="https://www.jb51.cc/tag/JavaScript/" title="JavaScript">JavaScript</a><a href="https://www.jb51.cc/tag/java/" title="java">java</a><a href="https://www.jb51.cc/tag/HTML/" title="HTML">HTML</a><a href="https://www.jb51.cc/tag/reactjs/" title="reactjs">reactjs</a><a href="https://www.jb51.cc/tag/C/" title="C#">C#</a><a href="https://www.jb51.cc/tag/Android/" title="Android">Android</a><a href="https://www.jb51.cc/tag/CSS/" title="CSS">CSS</a><a href="https://www.jb51.cc/tag/Nodejs/" title="Node.js">Node.js</a><a href="https://www.jb51.cc/tag/sql/" title="sql">sql</a><a href="https://www.jb51.cc/tag/rp/" title="r">r</a><a href="https://www.jb51.cc/tag/python3x/" title="python-3.x">python-3.x</a><a href="https://www.jb51.cc/tag/MysqL/" title="MysqL">MysqL</a><a href="https://www.jb51.cc/tag/jQuery/" title="jQuery">jQuery</a><a href="https://www.jb51.cc/tag/c4343/" title="c++">c++</a><a href="https://www.jb51.cc/tag/pandas/" title="pandas">pandas</a><a href="https://www.jb51.cc/tag/flutter/" title="Flutter">Flutter</a><a href="https://www.jb51.cc/tag/angular/" title="angular">angular</a><a href="https://www.jb51.cc/tag/IOS/" title="IOS">IOS</a><a href="https://www.jb51.cc/tag/django/" title="django">django</a><a href="https://www.jb51.cc/tag/linux/" title="linux">linux</a><a href="https://www.jb51.cc/tag/swift/" title="swift">swift</a><a href="https://www.jb51.cc/tag/typescript/" title="typescript">typescript</a><a href="https://www.jb51.cc/tag/luyouqi/" title="路由器">路由器</a><a href="https://www.jb51.cc/tag/JSON/" title="JSON">JSON</a><a href="https://www.jb51.cc/tag/luyouqishezhi/" title="路由器设置">路由器设置</a><a href="https://www.jb51.cc/tag/wuxianluyouqi/" title="无线路由器">无线路由器</a><a href="https://www.jb51.cc/tag/h3c/" title="h3c">h3c</a><a href="https://www.jb51.cc/tag/huasan/" title="华三">华三</a><a href="https://www.jb51.cc/tag/huasanluyouqishezhi/" title="华三路由器设置">华三路由器设置</a><a href="https://www.jb51.cc/tag/huasanluyouqi/" title="华三路由器">华三路由器</a><a href="https://www.jb51.cc/tag/diannaoruanjianjiaocheng/" title="电脑软件教程">电脑软件教程</a><a href="https://www.jb51.cc/tag/arrays/" title="arrays">arrays</a><a href="https://www.jb51.cc/tag/docker/" title="docker">docker</a><a href="https://www.jb51.cc/tag/ruanjiantuwenjiaocheng/" title="软件图文教程">软件图文教程</a><a href="https://www.jb51.cc/tag/C/" title="C">C</a><a href="https://www.jb51.cc/tag/vuejs/" title="vue.js">vue.js</a><a href="https://www.jb51.cc/tag/laravel/" title="laravel">laravel</a><a href="https://www.jb51.cc/tag/springboot/" title="spring-boot">spring-boot</a><a href="https://www.jb51.cc/tag/reactnative/" title="react-native">react-native</a></div> </div> </div> </div> </div> </div> </div> <footer id="footer"> <div class="container" style="width:1440px;"> <div class="row hidden-xs"> <div class="col-sm-12 col-md-9 col-lg-9 site-link"> <ul class="list-inline"> <li>友情链接:</li><li><a href="https://ai.jb51.cc/" title="ai导航是编程之家旗下ai方向的ai资讯、ai工具类集合导航站。" target="_blank" rel="nofollow">ai导航</a></li></ul> <ul class="list-inline"> <li><a href="https://www.jb51.cc" title="编程之家">编程之家</a></li>-<li><a href="https://t5m44pq3f7.jiandaoyun.com/f/638ca61b7b079a000a5d2dd6" rel="nofollow" title="我要投稿" target="_blank">我要投稿</a></li>-<li><a target="_blank" rel="nofollow" href="https://t5m44pq3f7.jiandaoyun.com/f/638ca8c69ad234000a79561f" title="广告合作">广告合作</a></li>-<li><a target="_blank" href="http://wpa.qq.com/msgrd?v=3&uin=76874919&site=qq&menu=yes">联系我们</a></li>-<li><a href="https://www.jb51.cc/disclaimers.html" title="免责声明">免责声明</a></li>-<li><a href="https://www.jb51.cc/sitemap/all/index.xml" title="网站地图" target="_blank">网站地图</a></li> </ul> <div>版权所有 © 2018编程之家<a href="https://beian.miit.gov.cn/" target="_blank" rel="nofollow">闽ICP备13020303号-8</a> </div> </div> <div class="col-sm-12 col-md-3 col-lg-3"><img src="https://www.jb51.cc/qrcode.jpg" width="90" alt="微信公众号搜索 “ 程序精选 ” ,选择关注!"> <div class="pull-right">微信公众号搜<span class="text-danger">"智元新知"</span>关注<br />微信扫一扫可直接关注哦!</div> </div> </div> </div> </footer> <script src="https://www.jb51.cc/js/count.js"></script> </body> </html>