织梦CMS5.7主动推送二次开发
今天一个朋友叫我写个织梦的百度主动推送插件,实现的功能是:每发表或者更新一篇文章,都会触动主动推送,达到资源最新提交给百度进行抓取。
案例站点:奇迹私服
第一步:登入FTP,在/后台的文件夹/article_add.php 发布文档
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 | <?php require_once (dirname( __FILE__ ). '/config.php' ); CheckPurview( 'a_New,a_AccNew' ); require_once (DEDEINC. '/customfields.func.php' ); require_once (DEDEADMIN. '/inc/inc_archives_functions.php' ); if ( file_exists (DEDEDATA. '/template.rand.php' )) { require_once (DEDEDATA. '/template.rand.php' ); } if ( empty ( $dopost )) $dopost = '' ; if ( $dopost != 'save' ) { require_once (DEDEINC. "/dedetag.class.php" ); require_once (DEDEADMIN. "/inc/inc_catalog_options.php" ); ClearMyAddon(); $channelid = empty ( $channelid ) ? 0 : intval ( $channelid ); $cid = empty ( $cid ) ? 0 : intval ( $cid ); if ( empty ( $geturl )) $geturl = '' ; $keywords = $writer = $source = $body = $description = $title = '' ; //采集单个网页 if (preg_match( "#^http:\/\/#" , $geturl )) { require_once (DEDEADMIN. "/inc/inc_coonepage.php" ); $redatas = CoOnePage( $geturl ); extract( $redatas ); } //获得频道模型ID if ( $cid >0 && $channelid ==0) { $row = $dsql ->GetOne( "Select channeltype From `#@__arctype` where id='$cid'; " ); $channelid = $row [ 'channeltype' ]; } else { if ( $channelid ==0) { $channelid = 1; } } //获得频道模型信息 $cInfos = $dsql ->GetOne( " Select * From `#@__channeltype` where id='$channelid' " ); //获取文章最大id以确定当前权重 $maxWright = $dsql ->GetOne( "SELECT COUNT(*) AS cc FROM #@__archives" ); include DedeInclude( "templets/article_add.htm" ); exit (); } /*-------------------------------- function __save(){ } -------------------------------*/ else if ( $dopost == 'save' ) { require_once (DEDEINC. '/image.func.php' ); require_once (DEDEINC. '/oxwindow.class.php' ); $flag = isset( $flags ) ? join( ',' , $flags ) : '' ; $notpost = isset( $notpost ) && $notpost == 1 ? 1: 0; if ( empty ( $typeid2 )) $typeid2 = '' ; if (!isset( $autokey )) $autokey = 0; if (!isset( $remote )) $remote = 0; if (!isset( $dellink )) $dellink = 0; if (!isset( $autolitpic )) $autolitpic = 0; if ( empty ( $click )) $click = ( $cfg_arc_click == '-1' ? mt_rand(50, 200) : $cfg_arc_click ); if ( empty ( $typeid )) { ShowMsg( "请指定文档的栏目!" , "-1" ); exit (); } if ( empty ( $channelid )) { ShowMsg( "文档为非指定的类型,请检查你发布内容的表单是否合法!" , "-1" ); exit (); } if (!CheckChannel( $typeid , $channelid )) { ShowMsg( "你所选择的栏目与当前模型不相符,请选择白色的选项!" , "-1" ); exit (); } if (!TestPurview( 'a_New' )) { CheckCatalog( $typeid , "对不起,你没有操作栏目 {$typeid} 的权限!" ); } //对保存的内容进行处理 if ( empty ( $writer )) $writer = $cuserLogin ->getUserName(); if ( empty ( $source )) $source = '未知' ; $pubdate = GetMkTime( $pubdate ); $senddate = time(); $sortrank = AddDay( $pubdate , $sortup ); $ismake = $ishtml ==0 ? -1 : 0; $title = preg_replace( "#\"#" , '"' , $title ); $title = dede_htmlspecialchars(cn_substrR( $title , $cfg_title_maxlen )); $shorttitle = cn_substrR( $shorttitle ,36); $color = cn_substrR( $color ,7); $writer = cn_substrR( $writer ,20); $source = cn_substrR( $source ,30); $description = cn_substrR( $description , $cfg_auot_description ); $keywords = cn_substrR( $keywords ,60); $filename = trim(cn_substrR( $filename ,40)); $userip = GetIP(); $isremote = ( empty ( $isremote )? 0 : $isremote ); $serviterm = empty ( $serviterm )? "" : $serviterm ; if (!TestPurview( 'a_Check,a_AccCheck,a_MyCheck' )) { $arcrank = -1; } $adminid = $cuserLogin ->getUserID(); //处理上传的缩略图 if ( empty ( $ddisremote )) { $ddisremote = 0; } $litpic = GetDDImage( 'none' , $picname , $ddisremote ); //生成文档ID $arcID = GetIndexKey( $arcrank , $typeid , $sortrank , $channelid , $senddate , $adminid ); if ( empty ( $arcID )) { ShowMsg( "无法获得主键,因此无法进行后续操作!" , "-1" ); exit (); } if (trim( $title ) == '' ) { ShowMsg( '标题不能为空' , '-1' ); exit (); } //处理body字段自动摘要、自动提取缩略图等 $body = AnalyseHtmlBody( $body , $description , $litpic , $keywords , 'htmltext' ); //自动分页 if ( $sptype == 'auto' ) { $body = SpLongBody( $body , $spsize *1024, "#p#分页标题#e#" ); } //分析处理附加表数据 $inadd_f = $inadd_v = '' ; if (! empty ( $dede_addonfields )) { $addonfields = explode ( ';' , $dede_addonfields ); if ( is_array ( $addonfields )) { foreach ( $addonfields as $v ) { if ( $v == '' ) continue ; $vs = explode ( ',' , $v ); if ( $vs [1]== 'htmltext' || $vs [1]== 'textdata' ) { ${ $vs [0]} = AnalyseHtmlBody(${ $vs [0]}, $description , $litpic , $keywords , $vs [1]); } else { if (!isset(${ $vs [0]})) ${ $vs [0]} = '' ; ${ $vs [0]} = GetFieldValueA(${ $vs [0]}, $vs [1], $arcID ); } $inadd_f .= ',' . $vs [0]; $inadd_v .= " ,'" .${ $vs [0]}. "' " ; } } } //处理图片文档的自定义属性 if ( $litpic != '' && !preg_match( "#p#" , $flag )) { $flag = ( $flag == '' ? 'p' : $flag . ',p' ); } if ( $redirecturl != '' && !preg_match( "#j#" , $flag )) { $flag = ( $flag == '' ? 'j' : $flag . ',j' ); } //跳转网址的文档强制为动态 if (preg_match( "#j#" , $flag )) $ismake = -1; //保存到主表 $query = "INSERT INTO `#@__archives`(id,typeid,typeid2,sortrank,flag,ismake,channel,arcrank,click,money,title,shorttitle, color,writer,source,litpic,pubdate,senddate,mid,voteid,notpost,description,keywords,filename,dutyadmin,weight) VALUES ( '$arcID' , '$typeid' , '$typeid2' , '$sortrank' , '$flag' , '$ismake' , '$channelid' , '$arcrank' , '$click' , '$money' , '$title' , '$shorttitle' , '$color' , '$writer' , '$source' , '$litpic' , '$pubdate' , '$senddate' , '$adminid' , '$voteid' , '$notpost' , '$description' , '$keywords' , '$filename' , '$adminid' , '$weight' );"; if (! $dsql ->ExecuteNoneQuery( $query )) { $gerr = $dsql ->GetError(); $dsql ->ExecuteNoneQuery( "DELETE FROM `#@__arctiny` WHERE id='$arcID'" ); ShowMsg( "把数据保存到数据库主表 `#@__archives` 时出错,请把相关信息提交给DedeCms官方。" . str_replace ( '"' , '' , $gerr ),"javascript:;"); exit (); } //保存到附加表 $cts = $dsql ->GetOne( "SELECT addtable FROM `#@__channeltype` WHERE id='$channelid' " ); $addtable = trim( $cts [ 'addtable' ]); if ( empty ( $addtable )) { $dsql ->ExecuteNoneQuery( "DELETE FROM `#@__archives` WHERE id='$arcID'" ); $dsql ->ExecuteNoneQuery( "DELETE FROM `#@__arctiny` WHERE id='$arcID'" ); ShowMsg( "没找到当前模型[{$channelid}]的主表信息,无法完成操作!。" , "javascript:;" ); exit (); } $useip = GetIP(); $templet = empty ( $templet ) ? '' : $templet ; $query = "INSERT INTO `{$addtable}`(aid,typeid,redirecturl,templet,userip,body{$inadd_f}) Values('$arcID','$typeid','$redirecturl','$templet','$useip','$body'{$inadd_v})" ; if (! $dsql ->ExecuteNoneQuery( $query )) { $gerr = $dsql ->GetError(); $dsql ->ExecuteNoneQuery( "Delete From `#@__archives` where id='$arcID'" ); $dsql ->ExecuteNoneQuery( "Delete From `#@__arctiny` where id='$arcID'" ); ShowMsg( "把数据保存到数据库附加表 `{$addtable}` 时出错,请把相关信息提交给DedeCms官方。" . str_replace ( '"' , '' , $gerr ),"javascript:;"); exit (); } //生成HTML InsertTags( $tags , $arcID ); if ( $cfg_remote_site == 'Y' && $isremote == "1" ) { if ( $serviterm != "" ){ list( $servurl , $servuser , $servpwd ) = explode ( ',' , $serviterm ); $config = array ( 'hostname' => $servurl , 'username' => $servuser , 'password' => $servpwd , 'debug' => 'TRUE' ); } else { $config = array (); } if (! $ftp ->connect( $config )) exit ( 'Error:None FTP Connection!' ); } $picTitle = false; if ( count ( $_SESSION [ 'bigfile_info' ]) > 0) { foreach ( $_SESSION [ 'bigfile_info' ] as $k => $v ) { if (! empty ( $v )) { $pictitle = ${ 'picinfook' . $k }; $titleSet = '' ; if (! empty ( $pictitle )) { $picTitle = TRUE; $titleSet = ",title='{$pictitle}'" ; } $dsql ->ExecuteNoneQuery( "UPDATE `#@__uploads` SET arcid='{$arcID}'{$titleSet} WHERE url LIKE '{$v}'; " ); } } } $artUrl = MakeArt( $arcID ,true,true, $isremote ); if ( $artUrl == '' ) { $artUrl = $cfg_phpurl . "/view.php?aid=$arcID" ; } //主动推送核心代码 else { $urls []= 'http://' . $cfg_baiduhost . '/' . $artUrl ; $api = '填写您百度主动推送的API接口' ; $ch = curl_init(); $options = array ( CURLOPT_URL => $api , CURLOPT_POST => true, CURLOPT_RETURNTRANSFER => true, CURLOPT_POSTFIELDS => implode( "\n" , $urls ), CURLOPT_HTTPHEADER => array ( 'Content-Type: text/plain' ), ); curl_setopt_array( $ch , $options ); $result = curl_exec( $ch ); } //主动推送核心代码结束 ClearMyAddon( $arcID , $title ); //返回成功信息 $msg = " 请选择你的后续操作: <a href= 'article_add.php?cid=$typeid' ><u>继续发布文章</u></a> <a href= '$artUrl' target= '_blank' ><u>查看文章</u></a> <a href= 'archives_do.php?aid=".$arcID."&dopost=editArchives' ><u>更改文章</u></a> <a href= 'catalog_do.php?cid=$typeid&dopost=listArchives' ><u>已发布文章管理</u></a> <a href= '' ><u>百度提交返回 ".$result." </u></a> $backurl "; $msg = "<div style=\"line-height:36px;height:36px\">{$msg}</div>" .GetUpdateTest(); $wintitle = "成功发布文章!" ; $wecome_info = "文章管理::发布文章" ; $win = new OxWindow(); $win ->AddTitle( "成功发布文章:" ); $win ->AddMsgItem( $msg ); $winform = $win ->GetWindow( "hand" , " " ,false); $win ->Display(); } ?> |
article_edit.php(修改文档)文件更改为以下代码:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 | <?php require_once (dirname( __FILE__ ). "/config.php" ); CheckPurview( 'a_Edit,a_AccEdit,a_MyEdit' ); require_once (DEDEINC. "/customfields.func.php" ); require_once (DEDEADMIN. "/inc/inc_archives_functions.php" ); if ( file_exists (DEDEDATA. '/template.rand.php' )) { require_once (DEDEDATA. '/template.rand.php' ); } if ( empty ( $dopost )) $dopost = '' ; $aid = isset( $aid ) && is_numeric ( $aid ) ? $aid : 0; if ( $dopost != 'save' ) { require_once (DEDEADMIN. "/inc/inc_catalog_options.php" ); require_once (DEDEINC. "/dedetag.class.php" ); ClearMyAddon(); //读取归档信息 $query = "SELECT ch.typename AS channelname,ar.membername AS rankname,arc.* FROM `#@__archives` arc LEFT JOIN `#@__channeltype` ch ON ch.id=arc.channel LEFT JOIN `#@__arcrank` ar ON ar.rank=arc.arcrank WHERE arc.id= '$aid' "; $arcRow = $dsql ->GetOne( $query ); if (! is_array ( $arcRow )) { ShowMsg( "读取档案基本信息出错!" , "-1" ); exit (); } $query = "SELECT * FROM `#@__channeltype` WHERE id='" . $arcRow ['channel ']."' "; $cInfos = $dsql ->GetOne( $query ); if (! is_array ( $cInfos )) { ShowMsg( "读取频道配置信息出错!" , "javascript:;" ); exit (); } $addtable = $cInfos [ 'addtable' ]; $addRow = $dsql ->GetOne( "SELECT * FROM `$addtable` WHERE aid='$aid'" ); if (! is_array ( $addRow )) { ShowMsg( "读取附加信息出错!" , "javascript:;" ); exit (); } $channelid = $arcRow [ 'channel' ]; $tags = GetTags( $aid ); include DedeInclude( "templets/article_edit.htm" ); exit (); } /*-------------------------------- function __save(){ } -------------------------------*/ else if ( $dopost == 'save' ) { require_once (DEDEINC. '/image.func.php' ); require_once (DEDEINC. '/oxwindow.class.php' ); $flag = isset( $flags ) ? join( ',' , $flags ) : '' ; $notpost = isset( $notpost ) && $notpost == 1 ? 1: 0; if ( empty ( $typeid2 )) $typeid2 = 0; if (!isset( $autokey )) $autokey = 0; if (!isset( $remote )) $remote = 0; if (!isset( $dellink )) $dellink = 0; if (!isset( $autolitpic )) $autolitpic = 0; if ( empty ( $typeid )) { ShowMsg( "请指定文档的栏目!" , "-1" ); exit (); } if ( empty ( $channelid )) { ShowMsg( "文档为非指定的类型,请检查你发布内容的表单是否合法!" , "-1" ); exit (); } if (!CheckChannel( $typeid , $channelid )) { ShowMsg( "你所选择的栏目与当前模型不相符,请选择白色的选项!" , "-1" ); exit (); } if (!TestPurview( 'a_Edit' )) { if (TestPurview( 'a_AccEdit' )) { CheckCatalog( $typeid , "对不起,你没有操作栏目 {$typeid} 的文档权限!" ); } else { CheckArcAdmin( $id , $cuserLogin ->getUserID()); } } //对保存的内容进行处理 $pubdate = GetMkTime( $pubdate ); $sortrank = AddDay( $pubdate , $sortup ); $ismake = $ishtml ==0 ? -1 : 0; $autokey = 1; $title = dede_htmlspecialchars(cn_substrR( $title , $cfg_title_maxlen )); $shorttitle = cn_substrR( $shorttitle ,36); $color = cn_substrR( $color ,7); $writer = cn_substrR( $writer ,20); $source = cn_substrR( $source ,30); $description = cn_substrR( $description ,250); $keywords = trim(cn_substrR( $keywords ,60)); $filename = trim(cn_substrR( $filename ,40)); $isremote = ( empty ( $isremote )? 0 : $isremote ); $serviterm = empty ( $serviterm )? "" : $serviterm ; if (!TestPurview( 'a_Check,a_AccCheck,a_MyCheck' )) { $arcrank = -1; } $adminid = $cuserLogin ->getUserID(); //处理上传的缩略图 if ( empty ( $ddisremote )) { $ddisremote = 0; } $litpic = GetDDImage( 'none' , $picname , $ddisremote ); //分析body里的内容 $body = AnalyseHtmlBody( $body , $description , $litpic , $keywords , 'htmltext' ); //分析处理附加表数据 $inadd_f = '' ; $inadd_v = '' ; if (! empty ( $dede_addonfields )) { $addonfields = explode ( ';' , $dede_addonfields ); $inadd_f = '' ; $inadd_v = '' ; if ( is_array ( $addonfields )) { foreach ( $addonfields as $v ) { if ( $v == '' ) { continue ; } $vs = explode ( ',' , $v ); if ( $vs [1]== 'htmltext' || $vs [1]== 'textdata' ) //HTML文本特殊处理 { ${ $vs [0]} = AnalyseHtmlBody(${ $vs [0]}, $description , $litpic , $keywords , $vs [1]); } else { if (!isset(${ $vs [0]})) { ${ $vs [0]} = '' ; } ${ $vs [0]} = GetFieldValueA(${ $vs [0]}, $vs [1], $id ); } $inadd_f .= ",`{$vs[0]}` = '" .${ $vs [0]}. "'" ; } } } //处理图片文档的自定义属性 if ( $litpic != '' && !preg_match( "#p#" , $flag )) { $flag = ( $flag == '' ? 'p' : $flag . ',p' ); } if ( $redirecturl != '' && !preg_match( "#j#" , $flag )) { $flag = ( $flag == '' ? 'j' : $flag . ',j' ); } //跳转网址的文档强制为动态 if (preg_match( "#j#" , $flag )) $ismake = -1; //更新数据库的SQL语句 $query = "UPDATE #@__archives SET typeid= '$typeid' , typeid2= '$typeid2' , sortrank= '$sortrank' , flag= '$flag' , click= '$click' , ismake= '$ismake' , arcrank= '$arcrank' , money= '$money' , title= '$title' , color= '$color' , writer= '$writer' , source= '$source' , litpic= '$litpic' , pubdate= '$pubdate' , voteid= '$voteid' , notpost= '$notpost' , description= '$description' , keywords= '$keywords' , shorttitle= '$shorttitle' , filename= '$filename' , dutyadmin= '$adminid' , weight= '$weight' WHERE id= '$id' ; "; if (! $dsql ->ExecuteNoneQuery( $query )) { ShowMsg( '更新数据库archives表时出错,请检查' ,-1); exit (); } $cts = $dsql ->GetOne( "SELECT addtable FROM `#@__channeltype` WHERE id='$channelid' " ); $addtable = trim( $cts [ 'addtable' ]); if ( $addtable != '' ) { $useip = GetIP(); $templet = empty ( $templet ) ? '' : $templet ; $iquery = "UPDATE `$addtable` SET typeid='$typeid',body='$body'{$inadd_f},redirecturl='$redirecturl',templet='$templet',userip='$useip' WHERE aid='$id'" ; if (! $dsql ->ExecuteNoneQuery( $iquery )) { ShowMsg( "更新附加表 `$addtable` 时出错,请检查原因!" , "javascript:;" ); exit (); } } //生成HTML UpIndexKey( $id , $arcrank , $typeid , $sortrank , $tags ); if ( $cfg_remote_site == 'Y' && $isremote == "1" ) { if ( $serviterm != "" ){ list( $servurl , $servuser , $servpwd ) = explode ( ',' , $serviterm ); $config = array ( 'hostname' => $servurl , 'username' => $servuser , 'password' => $servpwd , 'debug' => 'TRUE' ); } else { $config = array (); } if (! $ftp ->connect( $config )) exit ( 'Error:None FTP Connection!' ); } $artUrl = MakeArt( $id ,true,true, $isremote ); if ( $artUrl == '' ) { $artUrl = $cfg_phpurl . "/view.php?aid=$id" ; } //修改内容模块下的主动推送 else { $urls []= 'http://' . $cfg_baiduhost . '/' . $artUrl ; $api = '填写您百度主动推送的API接口' ; $ch = curl_init(); $options = array ( CURLOPT_URL => $api , CURLOPT_POST => true, CURLOPT_RETURNTRANSFER => true, CURLOPT_POSTFIELDS => implode( "\n" , $urls ), CURLOPT_HTTPHEADER => array ( 'Content-Type: text/plain' ), ); curl_setopt_array( $ch , $options ); $result = curl_exec( $ch ); } //修改内容模块下的主动推送结束 ClearMyAddon( $id , $title ); //返回成功信息 $msg = " 请选择你的后续操作: <a href= 'article_add.php?cid=$typeid' ><u>发布新文章</u></a> <a href= 'archives_do.php?aid=".$id."&dopost=editArchives' ><u>查看更改</u></a> <a href= '$artUrl' target= '_blank' ><u>查看文章</u></a> <a href= 'catalog_do.php?cid=$typeid&dopost=listArchives' ><u>管理文章</u></a> <a href= '' ><u>百度提交返回 ".$result." </u></a> $backurl "; $wintitle = "成功更改文章!" ; $wecome_info = "文章管理::更改文章" ; $win = new OxWindow(); $win ->AddTitle( "成功更改文章:" ); $win ->AddMsgItem( $msg ); $winform = $win ->GetWindow( "hand" , " " ,false); $win ->Display(); } |
里面的提示:填写您百度主动推送的API接口, 进行替换你百度的接口,即可,然后覆盖文件,这样就OK了!
千行代码,Bug何处藏。 纵使上线又怎样,朝令改,夕断肠。
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】凌霞软件回馈社区,博客园 & 1Panel & Halo 联合会员上线
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】博客园社区专享云产品让利特惠,阿里云新客6.5折上折
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· DeepSeek 解答了困扰我五年的技术问题
· 为什么说在企业级应用开发中,后端往往是效率杀手?
· 用 C# 插值字符串处理器写一个 sscanf
· Java 中堆内存和栈内存上的数据分布和特点
· 开发中对象命名的一点思考
· DeepSeek 解答了困扰我五年的技术问题。时代确实变了!
· PPT革命!DeepSeek+Kimi=N小时工作5分钟完成?
· What?废柴, 还在本地部署DeepSeek吗?Are you kidding?
· 赶AI大潮:在VSCode中使用DeepSeek及近百种模型的极简方法
· DeepSeek企业级部署实战指南:从服务器选型到Dify私有化落地