Home Backend Development PHP Tutorial Parse Baidu search results link?url=parameter analysis (full)_PHP tutorial

Parse Baidu search results link?url=parameter analysis (full)_PHP tutorial

Jul 21, 2016 pm 03:15 PM
link url analyze parameter Can search results Baidu URL Obtain parse Jump

A few days ago, I wrote an article about how to get the URL after Baidu jump. After searching on Baidu, someone also studied Baidu link?url=.

The following results are roughly obtained:

1. The encryption method is based on: random + input residence time + snapshot address for encryption
2. There should be three elements in the entire code Parts: 1. Time of search term; 2. Search keywords; 3. Randomly generated unique identification code.
3. In any environment or browser url = there is a similar code at the end
From the above results of other people's research, we can know that "there is a similar code at the end" is more usable, so we will start with this.
I searched for "enenba" and found that the URL of my first search result had the same code, which was
http://www.baidu.com/link?url=………… ebac5573358cc3c0659257bfcf54763ec1c5ecff3b3fbd1d4c
All search results have a piece of code ebac5573358cc3c0659257bfcf54 (found after searching N times)
The 763ec1c5ecff3b3fbd1d4c at the end looks like the search result Real URL. (It has been verified that it is the ciphertext of the real URL)
I verified it like this:
1. First search www.php100.com on Baidu
The first result link:
http://www. baidu.com/link?url=…………ebac5573358cc3c0659257bfcf546427d385fef6656de2404d6843da27
See the first few 6427d385fef6656de2404d6843da27
2. Search www.hao123.com on Baidu
First result link:
http: //www.baidu.com/link?url=…………ebac5573358cc3c0659257bfcf54 6427d385e6ff7a6de0434d6843da
See the first few 6427d385e6ff7a6de0434d6843da
……
After searching N websites many times, I found that the first few domain names Yes For "www.", the ciphertext is 6427d385
and www. is four characters, and the ciphertext 6427d385 is eight characters. You can know that two characters of the ciphertext are equal to one character of the URL.
So I wrote a php form query and got the ciphertext part for easy viewing later.
Publish the php source code:

Copy the code The code is as follows:



Query Baidu link?ulr=Real link form</ title> <br></head> <br><body> <br><?php <BR>/* <BR>getrealurl Get the URL address after 301 and 302 redirection by enenba.com <BR> @param str $url Query <BR>$return str The real url of the directed url <BR>*/ <BR>function getrealurl($url){ <BR>$header = get_headers($url,1); <BR>if (strpos($header[0],'301') || strpos($header[0],'302')) { <BR>if(is_array($header['Location'])) { <BR>return $header['Location'][count($header['Location'])-1]; <BR>}else{ <BR>return $header['Location']; <BR>} <BR>} else { <BR>return $url; <BR>} <BR>} <BR>$input = '<form method="get" action=""><input type="text" name="url " id="url" style="width:800px;" /><input type="submit" value="Submit" /></form><body></html>'; <br>$url = isset($_GET['url'])?$_GET['url']:''; <br>if(empty($url)) exit($input); <br>$urlreal = getrealurl($url); <br>echo 'The real url is:'.$urlreal; <br>$urlreal = ltrim($urlreal,'http://'); <br>$search = '/ebac5573358cc3c0659257bfcf54( [0-9a-f]+)/i'; <br>preg_match($search,$url,$r); <br>$url_encode = $r[1]; unset($r); <br>echo '<br/>The ciphertext part is: '.$url_encode.'<br/>'; <br>$urlreal_arr = str_split($urlreal); <br>$url_encode_arr = str_split($url_encode,2 ; Research to be continued. . . . <br>This site declares in advance: The articles on cnbeta are not published by me. My analysis is only based on my own ideas and research. It is just a process. As for whether there are results, I have my own conclusions. Please don't rant. <br>Continuing from the previous article, I carefully looked at the long code of the Baidu result URL and found that the ciphertext only consists of numbers and letters a to f, which is a hexadecimal code. <br>Hexadecimal is from 0->1->2->3->4->5->7->8->9->a->b ->c->d->e->f <br>I collected a series of URLs and counted the first code. </div>ebac5573358cc3c0659257bfcf54XX... <br>The url corresponding to the XX code is as follows <br><br><br><br>Copy the code<br><br> The code is as follows:<br><div class="codebody" id="code98723"> <br>33 0 23 @ 13 P 03 ` 73 p 63 <br>! 32 1 22 A 12 Q 02 a 72 q 62 <br>" 31 2 21 B 11 R 01 b 71 r 61 <br> # 30 3 20 C 10 S 00 c 70 s 60 <br>$ 37 4 27 D 17 T 07 d 77 t 67 <br>% 36 5 26 E 16 U 06 e 76 u 66 <br>& 35 6 25 F 15 V 05 f 75 v 65 <br>' 34 7 24 G 14 W 04 g 74 w 64 <br>( 3b 8 2b H 1b X 0b h 7b x 6b <br>) 3a 9 2a I 1a Y 0a i 7a y 6a <br>* 39 : 29 J 19 Z 09 j 79 z 69 <br>+ 38 ; 28 K 18 [ 08 k 78 { 68 <br>, 3f < 2f L 1f 0f l 7f | 6f <BR> - 3e = 2e M 1e ] 0e m 7e } 6e <BR>. 3d > 2d N 1d ^ 0d n 7d ~ 6d <br>/ 3c ? 2c O 1c _ 0c o 7c 6c <br> </div> <br>It is found that it should be a character in an ascii code table, but the order should be confused. But it is all like this in one base: <br>3->2->1->0-> 7->6->5->4->b->a->9->8->f->e->d->c <br>four digits In descending order, it can be seen that the overall trend is decreasing. <br>But what I don’t understand is that the corresponding 0c and 73 are adjacent in ascii. There is no way. I can’t see the pattern. Let’s look at the second one. The code for this bit is <br>ebac5573358cc3c0659257bfcf54XXYY. The url corresponding to the bit code for <br>YY is as follows: <br><div class="codetitle"> <span style="CURSOR: pointer" onclick="doCopy('code76697')"><u>70 0 60 @ 50 P 40 ` 30 p 20 </u>! 71 1 61 A 51 Q 41 a 31 q 21 </span>" 72 2 62 B 52 R 42 b 32 r 22 </div># 73 3 63 C 53 S 43 c 33 s 23 <div class="codebody" id="code76697">$ 74 4 64 D 54 T 44 d 34 t 24 <br>% 75 5 65 E 55 U 45 e 35 u 25 <br>& 76 6 66 F 56 V 46 f 36 v 26 <br>' 77 7 67 G 57 W 47 g 37 w 27 <br>( 78 8 68 H 58 X 48 h 38 x 28 <br>) 79 9 69 I 59 Y 49 i 39 y 29 <br>* 7a : 6a J 5a Z 4a j 3a z 2a <br>+ 7b ; 6b K 5b [ 4b k 3b { 2b <br>, 7c < 6c L 5c 4c l 3c | 2c <BR>- 7d = 6d M 5d ] 4d m 3d } 2d <BR>. 7e > 6e N 5e ^ 4e n 3e ~ 2e <br>/ 7f ? 6f O 5f _ 4f o 3f 2f <br><br> <br>The secret text of the second group follows the increasing order of hexadecimal. <br>0->1->2->3->4->5->7->8->9->a->b->c-> ;d->e->f <br>The overall trend is decreasing. <br>Look at the third group <br>ebac5573358cc3c0659257bfcf54XXYYZZ. . . . </div>The url corresponding to the ZZ code is as follows: <br><br><br><br> Copy the code <br><br> The code is as follows: <br><div class="codetitle"> <span style="CURSOR: pointer" onclick="doCopy('code16218')">84 0 94 @ a4 P b4 ` c4 p d4 <u>! 85 1 95 A a5 Q b5 a c5 q d5 </u>" 86 2 96 B a6 R b6 b c6 r d6 </span># 87 3 97 C a7 S b7 c c7 s d7 </div>$ 80 4 90 D a0 T b0 d c0 t d0 <div class="codebody" id="code16218">% 81 5 91 E a1 U b1 e c1 u d1 <br>& 82 6 92 F a2 V b2 f c2 v d2 <br> ' 83 7 93 G a3 W b3 g c3 w d3 <br>( 8c 8 9c H ac ae Z be j ce z de <br>+ 8f ; 9f K af [ bf k cf { df <br>, 88 < 98 L a8 b8 l c8 | d8 <BR>- 89 = 99 M a9 ] b9 m c9 } d9 <BR>. 8a > 9a N aa ^ ba n ca ~ da <br>/ 8b ? 9b O ab _ bb o cb db <br><br> <br>Does not explain the upper order: <br> 4->5->6->7->0->1->2->3->4->c->b->e->f- >8->9->a->b <br>Overall, it is increasing <br> I haven’t looked at the following digits, but I can probably tell that it is a group of four digits. Hexadecimal confusion , as for whether it is increasing or decreasing, a certain amount of data is needed to determine. <br>To be continued. <br> <br> </div> <br>http://www.bkjia.com/PHPjc/326056.html<br><br>www.bkjia.com<br><br>true<br>http: //www.bkjia.com/PHPjc/326056.html<p align="left"></p> <div style="display:none;">TechArticle<span id="url" itemprop="url"></span>A few days ago I wrote an article on how to get the URL after Baidu jump. I checked it on Baidu. Some people have also studied Baidu link?url=. The following results are roughly obtained: 1. The encryption method is based on...<span id="indexUrl" itemprop="indexUrl"></span><span id="isOriginal" itemprop="isOriginal"></span> <span id="isBasedOnUrl" itemprop="isBasedOnUrl"></span> </div> </div> </div> <div class="wzconShengming_sp"> <div class="bzsmdiv_sp">Statement of this Website</div> <div>The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn</div> </div> </div> <ins class="adsbygoogle" style="display:block" data-ad-format="autorelaxed" data-ad-client="ca-pub-5902227090019525" data-ad-slot="2507867629"></ins> <script> (adsbygoogle = window.adsbygoogle || []).push({}); </script> <div class="AI_ToolDetails_main4sR"> <ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-5902227090019525" data-ad-slot="3653428331" data-ad-format="auto" data-full-width-responsive="true"></ins> <script> (adsbygoogle = window.adsbygoogle || []).push({}); </script> <!-- <div class="phpgenera_Details_mainR4"> <div class="phpmain1_4R_readrank"> <div class="phpmain1_4R_readrank_top"> <img onerror="this.onerror=''; this.src='/static/imghw/default1.png'" onerror="this.onerror=''; this.src='/static/imghw/default1.png'" src="/static/imghw/hotarticle2.png" alt="" /> <h2>Hot Article</h2> </div> <div class="phpgenera_Details_mainR4_bottom"> <div class="phpgenera_Details_mainR4_bottoms"> <a href="https://www.php.cn/faq/1796773439.html" title="Repo: How To Revive Teammates" class="phpgenera_Details_mainR4_bottom_title">Repo: How To Revive Teammates</a> <div class="phpgenera_Details_mainR4_bottoms_info"> <span>1 months ago</span> <span>By 尊渡假赌尊渡假赌尊渡假赌</span> </div> </div> <div class="phpgenera_Details_mainR4_bottoms"> <a href="https://www.php.cn/faq/1796780570.html" title="R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)" class="phpgenera_Details_mainR4_bottom_title">R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)</a> <div class="phpgenera_Details_mainR4_bottoms_info"> <span>2 weeks ago</span> <span>By 尊渡假赌尊渡假赌尊渡假赌</span> </div> </div> <div class="phpgenera_Details_mainR4_bottoms"> <a href="https://www.php.cn/faq/1796774171.html" title="Hello Kitty Island Adventure: How To Get Giant Seeds" class="phpgenera_Details_mainR4_bottom_title">Hello Kitty Island Adventure: How To Get Giant Seeds</a> <div class="phpgenera_Details_mainR4_bottoms_info"> <span>1 months ago</span> <span>By 尊渡假赌尊渡假赌尊渡假赌</span> </div> </div> <div class="phpgenera_Details_mainR4_bottoms"> <a href="https://www.php.cn/faq/1796775427.html" title="How Long Does It Take To Beat Split Fiction?" class="phpgenera_Details_mainR4_bottom_title">How Long Does It Take To Beat Split Fiction?</a> <div class="phpgenera_Details_mainR4_bottoms_info"> <span>4 weeks ago</span> <span>By DDD</span> </div> </div> <div class="phpgenera_Details_mainR4_bottoms"> <a href="https://www.php.cn/faq/1796775336.html" title="R.E.P.O. Save File Location: Where Is It & How to Protect It?" class="phpgenera_Details_mainR4_bottom_title">R.E.P.O. Save File Location: Where Is It & How to Protect It?</a> <div class="phpgenera_Details_mainR4_bottoms_info"> <span>4 weeks ago</span> <span>By DDD</span> </div> </div> </div> <div class="phpgenera_Details_mainR3_more"> <a href="https://www.php.cn/article.html">Show More</a> </div> </div> </div> --> <div class="phpgenera_Details_mainR3"> <div class="phpmain1_4R_readrank"> <div class="phpmain1_4R_readrank_top"> <img onerror="this.onerror=''; this.src='/static/imghw/default1.png'" onerror="this.onerror=''; this.src='/static/imghw/default1.png'" src="/static/imghw/hottools2.png" alt="" /> <h2>Hot AI Tools</h2> </div> <div class="phpgenera_Details_mainR3_bottom"> <div class="phpmain_tab2_mids_top"> <a href="https://www.php.cn/ai/undresserai-undress" title="Undresser.AI Undress" class="phpmain_tab2_mids_top_img"> <img onerror="this.onerror=''; this.src='/static/imghw/default1.png'" onerror="this.onerror=''; this.src='/static/imghw/default1.png'" class="lazy" data-src="https://img.php.cn/upload/ai_manual/001/246/273/173411540686492.jpg?x-oss-process=image/resize,m_fill,h_50,w_50" src="/static/imghw/default1.png" alt="Undresser.AI Undress" /> </a> <div class="phpmain_tab2_mids_info"> <a href="https://www.php.cn/ai/undresserai-undress" title="Undresser.AI Undress" class="phpmain_tab2_mids_title"> <h3>Undresser.AI Undress</h3> </a> <p>AI-powered app for creating realistic nude photos</p> </div> </div> <div class="phpmain_tab2_mids_top"> <a href="https://www.php.cn/ai/ai-clothes-remover" title="AI Clothes Remover" class="phpmain_tab2_mids_top_img"> <img onerror="this.onerror=''; this.src='/static/imghw/default1.png'" onerror="this.onerror=''; this.src='/static/imghw/default1.png'" class="lazy" data-src="https://img.php.cn/upload/ai_manual/001/246/273/173411552797167.jpg?x-oss-process=image/resize,m_fill,h_50,w_50" src="/static/imghw/default1.png" alt="AI Clothes Remover" /> </a> <div class="phpmain_tab2_mids_info"> <a href="https://www.php.cn/ai/ai-clothes-remover" title="AI Clothes Remover" class="phpmain_tab2_mids_title"> <h3>AI Clothes Remover</h3> </a> <p>Online AI tool for removing clothes from photos.</p> </div> </div> <div class="phpmain_tab2_mids_top"> <a href="https://www.php.cn/ai/undress-ai-tool" title="Undress AI Tool" class="phpmain_tab2_mids_top_img"> <img onerror="this.onerror=''; this.src='/static/imghw/default1.png'" onerror="this.onerror=''; this.src='/static/imghw/default1.png'" class="lazy" data-src="https://img.php.cn/upload/ai_manual/001/246/273/173410641626608.jpg?x-oss-process=image/resize,m_fill,h_50,w_50" src="/static/imghw/default1.png" alt="Undress AI Tool" /> </a> <div class="phpmain_tab2_mids_info"> <a href="https://www.php.cn/ai/undress-ai-tool" title="Undress AI Tool" class="phpmain_tab2_mids_title"> <h3>Undress AI Tool</h3> </a> <p>Undress images for free</p> </div> </div> <div class="phpmain_tab2_mids_top"> <a href="https://www.php.cn/ai/clothoffio" title="Clothoff.io" class="phpmain_tab2_mids_top_img"> <img onerror="this.onerror=''; this.src='/static/imghw/default1.png'" onerror="this.onerror=''; this.src='/static/imghw/default1.png'" class="lazy" data-src="https://img.php.cn/upload/ai_manual/001/246/273/173411529149311.jpg?x-oss-process=image/resize,m_fill,h_50,w_50" src="/static/imghw/default1.png" alt="Clothoff.io" /> </a> <div class="phpmain_tab2_mids_info"> <a href="https://www.php.cn/ai/clothoffio" title="Clothoff.io" class="phpmain_tab2_mids_title"> <h3>Clothoff.io</h3> </a> <p>AI clothes remover</p> </div> </div> <div class="phpmain_tab2_mids_top"> <a href="https://www.php.cn/ai/ai-hentai-generator" title="AI Hentai Generator" class="phpmain_tab2_mids_top_img"> <img onerror="this.onerror=''; this.src='/static/imghw/default1.png'" onerror="this.onerror=''; this.src='/static/imghw/default1.png'" class="lazy" data-src="https://img.php.cn/upload/ai_manual/001/246/273/173405034393877.jpg?x-oss-process=image/resize,m_fill,h_50,w_50" src="/static/imghw/default1.png" alt="AI Hentai Generator" /> </a> <div class="phpmain_tab2_mids_info"> <a href="https://www.php.cn/ai/ai-hentai-generator" title="AI Hentai Generator" class="phpmain_tab2_mids_title"> <h3>AI Hentai Generator</h3> </a> <p>Generate AI Hentai for free.</p> </div> </div> </div> <div class="phpgenera_Details_mainR3_more"> <a href="https://www.php.cn/ai">Show More</a> </div> </div> </div> <script src="https://sw.php.cn/hezuo/cac1399ab368127f9b113b14eb3316d0.js" type="text/javascript"></script> <div class="phpgenera_Details_mainR4"> <div class="phpmain1_4R_readrank"> <div class="phpmain1_4R_readrank_top"> <img onerror="this.onerror=''; this.src='/static/imghw/default1.png'" onerror="this.onerror=''; this.src='/static/imghw/default1.png'" src="/static/imghw/hotarticle2.png" alt="" /> <h2>Hot Article</h2> </div> <div class="phpgenera_Details_mainR4_bottom"> <div class="phpgenera_Details_mainR4_bottoms"> <a href="https://www.php.cn/faq/1796773439.html" title="Repo: How To Revive Teammates" class="phpgenera_Details_mainR4_bottom_title">Repo: How To Revive Teammates</a> <div class="phpgenera_Details_mainR4_bottoms_info"> <span>1 months ago</span> <span>By 尊渡假赌尊渡假赌尊渡假赌</span> </div> </div> <div class="phpgenera_Details_mainR4_bottoms"> <a href="https://www.php.cn/faq/1796780570.html" title="R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)" class="phpgenera_Details_mainR4_bottom_title">R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)</a> <div class="phpgenera_Details_mainR4_bottoms_info"> <span>2 weeks ago</span> <span>By 尊渡假赌尊渡假赌尊渡假赌</span> </div> </div> <div class="phpgenera_Details_mainR4_bottoms"> <a href="https://www.php.cn/faq/1796774171.html" title="Hello Kitty Island Adventure: How To Get Giant Seeds" class="phpgenera_Details_mainR4_bottom_title">Hello Kitty Island Adventure: How To Get Giant Seeds</a> <div class="phpgenera_Details_mainR4_bottoms_info"> <span>1 months ago</span> <span>By 尊渡假赌尊渡假赌尊渡假赌</span> </div> </div> <div class="phpgenera_Details_mainR4_bottoms"> <a href="https://www.php.cn/faq/1796775427.html" title="How Long Does It Take To Beat Split Fiction?" class="phpgenera_Details_mainR4_bottom_title">How Long Does It Take To Beat Split Fiction?</a> <div class="phpgenera_Details_mainR4_bottoms_info"> <span>4 weeks ago</span> <span>By DDD</span> </div> </div> <div class="phpgenera_Details_mainR4_bottoms"> <a href="https://www.php.cn/faq/1796775336.html" title="R.E.P.O. Save File Location: Where Is It & How to Protect It?" class="phpgenera_Details_mainR4_bottom_title">R.E.P.O. Save File Location: Where Is It & How to Protect It?</a> <div class="phpgenera_Details_mainR4_bottoms_info"> <span>4 weeks ago</span> <span>By DDD</span> </div> </div> </div> <div class="phpgenera_Details_mainR3_more"> <a href="https://www.php.cn/article.html">Show More</a> </div> </div> </div> <div class="phpgenera_Details_mainR3"> <div class="phpmain1_4R_readrank"> <div class="phpmain1_4R_readrank_top"> <img onerror="this.onerror=''; this.src='/static/imghw/default1.png'" onerror="this.onerror=''; this.src='/static/imghw/default1.png'" src="/static/imghw/hottools2.png" alt="" /> <h2>Hot Tools</h2> </div> <div class="phpgenera_Details_mainR3_bottom"> <div class="phpmain_tab2_mids_top"> <a href="https://www.php.cn/toolset/development-tools/92" title="Notepad++7.3.1" class="phpmain_tab2_mids_top_img"> <img onerror="this.onerror=''; this.src='/static/imghw/default1.png'" onerror="this.onerror=''; this.src='/static/imghw/default1.png'" class="lazy" data-src="https://img.php.cn/upload/manual/000/000/001/58ab96f0f39f7357.jpg?x-oss-process=image/resize,m_fill,h_50,w_72" src="/static/imghw/default1.png" alt="Notepad++7.3.1" /> </a> <div class="phpmain_tab2_mids_info"> <a href="https://www.php.cn/toolset/development-tools/92" title="Notepad++7.3.1" class="phpmain_tab2_mids_title"> <h3>Notepad++7.3.1</h3> </a> <p>Easy-to-use and free code editor</p> </div> </div> <div class="phpmain_tab2_mids_top"> <a href="https://www.php.cn/toolset/development-tools/93" title="SublimeText3 Chinese version" class="phpmain_tab2_mids_top_img"> <img onerror="this.onerror=''; this.src='/static/imghw/default1.png'" onerror="this.onerror=''; this.src='/static/imghw/default1.png'" class="lazy" data-src="https://img.php.cn/upload/manual/000/000/001/58ab97a3baad9677.jpg?x-oss-process=image/resize,m_fill,h_50,w_72" src="/static/imghw/default1.png" alt="SublimeText3 Chinese version" /> </a> <div class="phpmain_tab2_mids_info"> <a href="https://www.php.cn/toolset/development-tools/93" title="SublimeText3 Chinese version" class="phpmain_tab2_mids_title"> <h3>SublimeText3 Chinese version</h3> </a> <p>Chinese version, very easy to use</p> </div> </div> <div class="phpmain_tab2_mids_top"> <a href="https://www.php.cn/toolset/development-tools/121" title="Zend Studio 13.0.1" class="phpmain_tab2_mids_top_img"> <img onerror="this.onerror=''; this.src='/static/imghw/default1.png'" onerror="this.onerror=''; this.src='/static/imghw/default1.png'" class="lazy" data-src="https://img.php.cn/upload/manual/000/000/001/58ab97ecd1ab2670.jpg?x-oss-process=image/resize,m_fill,h_50,w_72" src="/static/imghw/default1.png" alt="Zend Studio 13.0.1" /> </a> <div class="phpmain_tab2_mids_info"> <a href="https://www.php.cn/toolset/development-tools/121" title="Zend Studio 13.0.1" class="phpmain_tab2_mids_title"> <h3>Zend Studio 13.0.1</h3> </a> <p>Powerful PHP integrated development environment</p> </div> </div> <div class="phpmain_tab2_mids_top"> <a href="https://www.php.cn/toolset/development-tools/469" title="Dreamweaver CS6" class="phpmain_tab2_mids_top_img"> <img onerror="this.onerror=''; this.src='/static/imghw/default1.png'" onerror="this.onerror=''; this.src='/static/imghw/default1.png'" class="lazy" data-src="https://img.php.cn/upload/manual/000/000/001/58d0e0fc74683535.jpg?x-oss-process=image/resize,m_fill,h_50,w_72" src="/static/imghw/default1.png" alt="Dreamweaver CS6" /> </a> <div class="phpmain_tab2_mids_info"> <a href="https://www.php.cn/toolset/development-tools/469" title="Dreamweaver CS6" class="phpmain_tab2_mids_title"> <h3>Dreamweaver CS6</h3> </a> <p>Visual web development tools</p> </div> </div> <div class="phpmain_tab2_mids_top"> <a href="https://www.php.cn/toolset/development-tools/500" title="SublimeText3 Mac version" class="phpmain_tab2_mids_top_img"> <img onerror="this.onerror=''; this.src='/static/imghw/default1.png'" onerror="this.onerror=''; this.src='/static/imghw/default1.png'" class="lazy" data-src="https://img.php.cn/upload/manual/000/000/001/58d34035e2757995.png?x-oss-process=image/resize,m_fill,h_50,w_72" src="/static/imghw/default1.png" alt="SublimeText3 Mac version" /> </a> <div class="phpmain_tab2_mids_info"> <a href="https://www.php.cn/toolset/development-tools/500" title="SublimeText3 Mac version" class="phpmain_tab2_mids_title"> <h3>SublimeText3 Mac version</h3> </a> <p>God-level code editing software (SublimeText3)</p> </div> </div> </div> <div class="phpgenera_Details_mainR3_more"> <a href="https://www.php.cn/ai">Show More</a> </div> </div> </div> <div class="phpgenera_Details_mainR4"> <div class="phpmain1_4R_readrank"> <div class="phpmain1_4R_readrank_top"> <img onerror="this.onerror=''; this.src='/static/imghw/default1.png'" onerror="this.onerror=''; this.src='/static/imghw/default1.png'" src="/static/imghw/hotarticle2.png" alt="" /> <h2>Hot Topics</h2> </div> <div class="phpgenera_Details_mainR4_bottom"> <div class="phpgenera_Details_mainR4_bottoms"> <a href="https://www.php.cn/faq/gmailyxdlrkzn" title="Where is the login entrance for gmail email?" class="phpgenera_Details_mainR4_bottom_title">Where is the login entrance for gmail email?</a> <div class="phpgenera_Details_mainR4_bottoms_info"> <div class="phpgenera_Details_mainR4_bottoms_infos"> <img src="/static/imghw/eyess.png" alt="" /> <span>7369</span> </div> <div class="phpgenera_Details_mainR4_bottoms_infos"> <img src="/static/imghw/tiezi.png" alt="" /> <span>15</span> </div> </div> </div> <div class="phpgenera_Details_mainR4_bottoms"> <a href="https://www.php.cn/faq/java-tutorial" title="Java Tutorial" class="phpgenera_Details_mainR4_bottom_title">Java Tutorial</a> <div class="phpgenera_Details_mainR4_bottoms_info"> <div class="phpgenera_Details_mainR4_bottoms_infos"> <img src="/static/imghw/eyess.png" alt="" /> <span>1628</span> </div> <div class="phpgenera_Details_mainR4_bottoms_infos"> <img src="/static/imghw/tiezi.png" alt="" /> <span>14</span> </div> </div> </div> <div class="phpgenera_Details_mainR4_bottoms"> <a href="https://www.php.cn/faq/cakephp-tutor" title="CakePHP Tutorial" class="phpgenera_Details_mainR4_bottom_title">CakePHP Tutorial</a> <div class="phpgenera_Details_mainR4_bottoms_info"> <div class="phpgenera_Details_mainR4_bottoms_infos"> <img src="/static/imghw/eyess.png" alt="" /> <span>1354</span> </div> <div class="phpgenera_Details_mainR4_bottoms_infos"> <img src="/static/imghw/tiezi.png" alt="" /> <span>52</span> </div> </div> </div> <div class="phpgenera_Details_mainR4_bottoms"> <a href="https://www.php.cn/faq/laravel-tutori" title="Laravel Tutorial" class="phpgenera_Details_mainR4_bottom_title">Laravel Tutorial</a> <div class="phpgenera_Details_mainR4_bottoms_info"> <div class="phpgenera_Details_mainR4_bottoms_infos"> <img src="/static/imghw/eyess.png" alt="" /> <span>1266</span> </div> <div class="phpgenera_Details_mainR4_bottoms_infos"> <img src="/static/imghw/tiezi.png" alt="" /> <span>25</span> </div> </div> </div> <div class="phpgenera_Details_mainR4_bottoms"> <a href="https://www.php.cn/faq/php-tutorial" title="PHP Tutorial" class="phpgenera_Details_mainR4_bottom_title">PHP Tutorial</a> <div class="phpgenera_Details_mainR4_bottoms_info"> <div class="phpgenera_Details_mainR4_bottoms_infos"> <img src="/static/imghw/eyess.png" alt="" /> <span>1214</span> </div> <div class="phpgenera_Details_mainR4_bottoms_infos"> <img src="/static/imghw/tiezi.png" alt="" /> <span>29</span> </div> </div> </div> </div> <div class="phpgenera_Details_mainR3_more"> <a href="https://www.php.cn/faq/zt">Show More</a> </div> </div> </div> </div> </div> <div class="Article_Details_main2"> <div class="phpgenera_Details_mainL4"> <div class="phpmain1_2_top"> <a href="javascript:void(0);" class="phpmain1_2_top_title">Related knowledge<img src="/static/imghw/index2_title2.png" alt="" /></a> </div> <div class="phpgenera_Details_mainL4_info"> <div class="phphistorical_Version2_mids"> <a href="https://www.php.cn/faq/729507.html" title="Where to get Google security code" class="phphistorical_Version2_mids_img"> <img onerror="this.onerror=''; this.src='/static/imghw/default1.png'" src="/static/imghw/default1.png" class="lazy" data-src="https://img.php.cn/upload/article/000/465/014/171176827260425.png?x-oss-process=image/resize,m_fill,h_207,w_330" alt="Where to get Google security code" /> </a> <a href="https://www.php.cn/faq/729507.html" title="Where to get Google security code" class="phphistorical_Version2_mids_title">Where to get Google security code</a> <span class="Articlelist_txts_time">Mar 30, 2024 am 11:11 AM</span> <p class="Articlelist_txts_p">Google Authenticator is a tool used to protect the security of user accounts, and its key is important information used to generate dynamic verification codes. If you forget the key of Google Authenticator and can only verify it through the security code, then the editor of this website will bring you a detailed introduction on where to get the Google security code. I hope it can help you. If you want to know more Users please continue reading below! First open the phone settings and enter the settings page. Scroll down the page and find Google. Go to the Google page and click on Google Account. Enter the account page and click View under the verification code. Enter your password or use your fingerprint to verify your identity. Obtain a Google security code and use the security code to verify your Google identity.</p> </div> <div class="phphistorical_Version2_mids"> <a href="https://www.php.cn/faq/734010.html" title="After 2 months, the humanoid robot Walker S can fold clothes" class="phphistorical_Version2_mids_img"> <img onerror="this.onerror=''; this.src='/static/imghw/default1.png'" src="/static/imghw/default1.png" class="lazy" data-src="https://img.php.cn/upload/article/000/465/014/171210248315904.jpg?x-oss-process=image/resize,m_fill,h_207,w_330" alt="After 2 months, the humanoid robot Walker S can fold clothes" /> </a> <a href="https://www.php.cn/faq/734010.html" title="After 2 months, the humanoid robot Walker S can fold clothes" class="phphistorical_Version2_mids_title">After 2 months, the humanoid robot Walker S can fold clothes</a> <span class="Articlelist_txts_time">Apr 03, 2024 am 08:01 AM</span> <p class="Articlelist_txts_p">Editor of Machine Power Report: Wu Xin The domestic version of the humanoid robot + large model team completed the operation task of complex flexible materials such as folding clothes for the first time. With the unveiling of Figure01, which integrates OpenAI's multi-modal large model, the related progress of domestic peers has been attracting attention. Just yesterday, UBTECH, China's "number one humanoid robot stock", released the first demo of the humanoid robot WalkerS that is deeply integrated with Baidu Wenxin's large model, showing some interesting new features. Now, WalkerS, blessed by Baidu Wenxin’s large model capabilities, looks like this. Like Figure01, WalkerS does not move around, but stands behind a desk to complete a series of tasks. It can follow human commands and fold clothes</p> </div> <div class="phphistorical_Version2_mids"> <a href="https://www.php.cn/faq/1796768320.html" title="deepseek web version entrance deepseek official website entrance" class="phphistorical_Version2_mids_img"> <img onerror="this.onerror=''; this.src='/static/imghw/default1.png'" src="/static/imghw/default1.png" class="lazy" data-src="https://img.php.cn/upload/article/202502/13/2025021315581873007.jpg?x-oss-process=image/resize,m_fill,h_207,w_330" alt="deepseek web version entrance deepseek official website entrance" /> </a> <a href="https://www.php.cn/faq/1796768320.html" title="deepseek web version entrance deepseek official website entrance" class="phphistorical_Version2_mids_title">deepseek web version entrance deepseek official website entrance</a> <span class="Articlelist_txts_time">Feb 19, 2025 pm 04:54 PM</span> <p class="Articlelist_txts_p">DeepSeek is a powerful intelligent search and analysis tool that provides two access methods: web version and official website. The web version is convenient and efficient, and can be used without installation; the official website provides comprehensive product information, download resources and support services. Whether individuals or corporate users, they can easily obtain and analyze massive data through DeepSeek to improve work efficiency, assist decision-making and promote innovation.</p> </div> <div class="phphistorical_Version2_mids"> <a href="https://www.php.cn/faq/755834.html" title="C++ function parameter type safety check" class="phphistorical_Version2_mids_img"> <img onerror="this.onerror=''; this.src='/static/imghw/default1.png'" src="/static/imghw/default1.png" class="lazy" data-src="https://img.php.cn/upload/article/000/465/014/171349920860650.jpg?x-oss-process=image/resize,m_fill,h_207,w_330" alt="C++ function parameter type safety check" /> </a> <a href="https://www.php.cn/faq/755834.html" title="C++ function parameter type safety check" class="phphistorical_Version2_mids_title">C++ function parameter type safety check</a> <span class="Articlelist_txts_time">Apr 19, 2024 pm 12:00 PM</span> <p class="Articlelist_txts_p">C++ parameter type safety checking ensures that functions only accept values ​​of expected types through compile-time checks, run-time checks, and static assertions, preventing unexpected behavior and program crashes: Compile-time type checking: The compiler checks type compatibility. Runtime type checking: Use dynamic_cast to check type compatibility, and throw an exception if there is no match. Static assertion: Assert type conditions at compile time.</p> </div> <div class="phphistorical_Version2_mids"> <a href="https://www.php.cn/faq/1794246.html" title="Baidu Apollo releases Apollo ADFM, the world's first large model that supports L4 autonomous driving" class="phphistorical_Version2_mids_img"> <img onerror="this.onerror=''; this.src='/static/imghw/default1.png'" src="/static/imghw/default1.png" class="lazy" data-src="https://img.php.cn/upload/article/000/000/164/171750249617773.jpg?x-oss-process=image/resize,m_fill,h_207,w_330" alt="Baidu Apollo releases Apollo ADFM, the world's first large model that supports L4 autonomous driving" /> </a> <a href="https://www.php.cn/faq/1794246.html" title="Baidu Apollo releases Apollo ADFM, the world's first large model that supports L4 autonomous driving" class="phphistorical_Version2_mids_title">Baidu Apollo releases Apollo ADFM, the world's first large model that supports L4 autonomous driving</a> <span class="Articlelist_txts_time">Jun 04, 2024 pm 08:01 PM</span> <p class="Articlelist_txts_p">On May 15, Baidu Apollo held Apollo Day 2024 in Wuhan Baidu Luobo Automobile Robot Zhixing Valley, comprehensively demonstrating Baidu's major progress in autonomous driving over the past ten years, bringing technological leaps based on large models and a new definition of passenger safety. With the world's largest autonomous vehicle operation network, Baidu has made autonomous driving safer than human driving. Thanks to this, safer, more comfortable, green and low-carbon travel methods are turning from ideal to reality. Wang Yunpeng, vice president of Baidu Group and president of the Intelligent Driving Business Group, said on the spot: "Our original intention to build autonomous vehicles is to satisfy people's growing yearning for better travel. People's satisfaction is our driving force. Because safety, So beautiful, we are happy to see</p> </div> <div class="phphistorical_Version2_mids"> <a href="https://www.php.cn/faq/780152.html" title="Baidu Robin Li led a team to visit PetroChina to discuss the intelligence of the oil and gas industry" class="phphistorical_Version2_mids_img"> <img onerror="this.onerror=''; this.src='/static/imghw/default1.png'" src="/static/imghw/default1.png" class="lazy" data-src="https://img.php.cn/upload/article/000/465/014/171507679759135.png?x-oss-process=image/resize,m_fill,h_207,w_330" alt="Baidu Robin Li led a team to visit PetroChina to discuss the intelligence of the oil and gas industry" /> </a> <a href="https://www.php.cn/faq/780152.html" title="Baidu Robin Li led a team to visit PetroChina to discuss the intelligence of the oil and gas industry" class="phphistorical_Version2_mids_title">Baidu Robin Li led a team to visit PetroChina to discuss the intelligence of the oil and gas industry</a> <span class="Articlelist_txts_time">May 07, 2024 pm 06:13 PM</span> <p class="Articlelist_txts_p">According to news from this site on May 7, on May 6, Robin Li, founder, chairman and CEO of Baidu, led a team to visit China National Petroleum Corporation (hereinafter referred to as "PetroChina") in Beijing and met with directors of China National Petroleum Corporation Chairman and Party Secretary Dai Houliang held talks. The two parties had in-depth exchanges on strengthening cooperation and promoting the deep integration of the energy industry with digital intelligence. PetroChina will accelerate the construction of a digital China Petroleum Corporation, strengthen cooperation with Baidu Group, promote the in-depth integration of the energy industry with digital intelligence, and make greater contributions to ensuring national energy security. Robin Li said that the "intelligent emergence" and core capabilities of understanding, generation, logic, and memory displayed by large models have opened up a broader space for imagination for the combination of cutting-edge technology and oil and gas business. Always</p> </div> <div class="phphistorical_Version2_mids"> <a href="https://www.php.cn/faq/757968.html" title="Advanced usage of reference parameters and pointer parameters in C++ functions" class="phphistorical_Version2_mids_img"> <img onerror="this.onerror=''; this.src='/static/imghw/default1.png'" src="/static/imghw/default1.png" class="lazy" data-src="https://img.php.cn/upload/article/000/887/227/171366354293390.jpg?x-oss-process=image/resize,m_fill,h_207,w_330" alt="Advanced usage of reference parameters and pointer parameters in C++ functions" /> </a> <a href="https://www.php.cn/faq/757968.html" title="Advanced usage of reference parameters and pointer parameters in C++ functions" class="phphistorical_Version2_mids_title">Advanced usage of reference parameters and pointer parameters in C++ functions</a> <span class="Articlelist_txts_time">Apr 21, 2024 am 09:39 AM</span> <p class="Articlelist_txts_p">Reference parameters in C++ functions (essentially variable aliases, modifying the reference modifies the original variable) and pointer parameters (storing the memory address of the original variable, modifying the variable by dereferencing the pointer) have different usages when passing and modifying variables. Reference parameters are often used to modify original variables (especially large structures) to avoid copy overhead when passed to constructors or assignment operators. Pointer parameters are used to flexibly point to memory locations, implement dynamic data structures, or pass null pointers to represent optional parameters.</p> </div> <div class="phphistorical_Version2_mids"> <a href="https://www.php.cn/faq/1784610.html" title="How to detect URL with regular expression in Golang?" class="phphistorical_Version2_mids_img"> <img onerror="this.onerror=''; this.src='/static/imghw/default1.png'" src="/static/imghw/default1.png" class="lazy" data-src="https://img.php.cn/upload/article/000/000/164/171712275260421.jpg?x-oss-process=image/resize,m_fill,h_207,w_330" alt="How to detect URL with regular expression in Golang?" /> </a> <a href="https://www.php.cn/faq/1784610.html" title="How to detect URL with regular expression in Golang?" class="phphistorical_Version2_mids_title">How to detect URL with regular expression in Golang?</a> <span class="Articlelist_txts_time">May 31, 2024 am 10:32 AM</span> <p class="Articlelist_txts_p">The steps to detect URLs in Golang using regular expressions are as follows: Compile the regular expression pattern using regexp.MustCompile(pattern). Pattern needs to match protocol, hostname, port (optional), path (optional) and query parameters (optional). Use regexp.MatchString(pattern,url) to detect whether the URL matches the pattern.</p> </div> </div> <a href="https://www.php.cn/be/" class="phpgenera_Details_mainL4_botton"> <span>See all articles</span> <img src="/static/imghw/down_right.png" alt="" /> </a> </div> </div> </div> </main> <footer> <div class="footer"> <div class="footertop"> <img src="/static/imghw/logo.png" alt=""> <p>Public welfare online PHP training,Help PHP learners grow quickly!</p> </div> <div class="footermid"> <a href="https://www.php.cn/about/us.html">About us</a> <a href="https://www.php.cn/about/disclaimer.html">Disclaimer</a> <a href="https://www.php.cn/update/article_0_1.html">Sitemap</a> </div> <div class="footerbottom"> <p> © php.cn All rights reserved </p> </div> </div> </footer> <input type="hidden" id="verifycode" value="/captcha.html"> <script>layui.use(['element', 'carousel'], function () {var element = layui.element;$ = layui.jquery;var carousel = layui.carousel;carousel.render({elem: '#test1', width: '100%', height: '330px', arrow: 'always'});$.getScript('/static/js/jquery.lazyload.min.js', function () {$("img").lazyload({placeholder: "/static/images/load.jpg", effect: "fadeIn", threshold: 200, skip_invisible: false});});});</script> <script src="/static/js/common_new.js"></script> <script type="text/javascript" src="/static/js/jquery.cookie.js?1743774374"></script> <script src="https://vdse.bdstatic.com//search-video.v1.min.js"></script> <link rel='stylesheet' id='_main-css' href='/static/css/viewer.min.css?2' type='text/css' media='all' /> <script type='text/javascript' src='/static/js/viewer.min.js?1'></script> <script type='text/javascript' src='/static/js/jquery-viewer.min.js'></script> <script type="text/javascript" src="/static/js/global.min.js?5.5.53"></script> <script> var _paq = window._paq = window._paq || []; /* tracker methods like "setCustomDimension" should be called before "trackPageView" */ _paq.push(['trackPageView']); _paq.push(['enableLinkTracking']); (function () { var u = "https://tongji.php.cn/"; _paq.push(['setTrackerUrl', u + 'matomo.php']); _paq.push(['setSiteId', '9']); var d = document, g = d.createElement('script'), s = d.getElementsByTagName('script')[0]; g.async = true; g.src = u + 'matomo.js'; s.parentNode.insertBefore(g, s); })(); </script> <script> // top layui.use(function () { var util = layui.util; util.fixbar({ on: { mouseenter: function (type) { layer.tips(type, this, { tips: 4, fixed: true, }); }, mouseleave: function (type) { layer.closeAll("tips"); }, }, }); }); document.addEventListener("DOMContentLoaded", (event) => { // 定义一个函数来处理滚动链接的点击事件 function setupScrollLink(scrollLinkId, targetElementId) { const scrollLink = document.getElementById(scrollLinkId); const targetElement = document.getElementById(targetElementId); if (scrollLink && targetElement) { scrollLink.addEventListener("click", (e) => { e.preventDefault(); // 阻止默认链接行为 targetElement.scrollIntoView({ behavior: "smooth" }); // 平滑滚动到目标元素 }); } else { console.warn( `Either scroll link with ID '${scrollLinkId}' or target element with ID '${targetElementId}' not found.` ); } } // 使用该函数设置多个滚动链接 setupScrollLink("Article_Details_main1L2s_1", "article_main_title1"); setupScrollLink("Article_Details_main1L2s_2", "article_main_title2"); setupScrollLink("Article_Details_main1L2s_3", "article_main_title3"); setupScrollLink("Article_Details_main1L2s_4", "article_main_title4"); setupScrollLink("Article_Details_main1L2s_5", "article_main_title5"); setupScrollLink("Article_Details_main1L2s_6", "article_main_title6"); // 可以继续添加更多的滚动链接设置 }); window.addEventListener("scroll", function () { var fixedElement = document.getElementById("Article_Details_main1Lmain"); var scrollTop = window.scrollY || document.documentElement.scrollTop; // 兼容不同浏览器 var clientHeight = window.innerHeight || document.documentElement.clientHeight; // 视口高度 var scrollHeight = document.documentElement.scrollHeight; // 页面总高度 // 计算距离底部的距离 var distanceToBottom = scrollHeight - scrollTop - clientHeight; // 当距离底部小于或等于300px时,取消固定定位 if (distanceToBottom <= 980) { fixedElement.classList.remove("Article_Details_main1Lmain"); fixedElement.classList.add("Article_Details_main1Lmain_relative"); } else { // 否则,保持固定定位 fixedElement.classList.remove("Article_Details_main1Lmain_relative"); fixedElement.classList.add("Article_Details_main1Lmain"); } }); </script> </body> </html>