Home > Backend Development > PHP Tutorial > Detailed explanation of obtaining email address based on PHP CURL_PHP tutorial

Detailed explanation of obtaining email address based on PHP CURL_PHP tutorial

WBOY
Release: 2016-07-21 15:09:55
Original
832 people have browsed it

CURL can be described as a must-have killer medicine for home travel. Why is it so described? It is because it is easy to use and can realize a series of functions such as page grabbing, simulated login collection and so on.
I remember that the first time I came into contact with CURL was to complete the crawling from the mailbox user list. At that time, in order to catch up with the progress, I didn't study it in detail. I just found some information on the Internet and implemented the function. Now after organizing the original code, the function can still be used

Copy the code The code is as follows:

error_reporting ( 0 );
set_time_limit ( 0 );
header ( "Content-Type: text/html; charset=GB2312" );

//Email username and password
$user = 'username';
$pass = 'password';

//Create a file to store cookie information
define ( "COOKIEJAR", tempnam ( ini_get ( "upload_tmp_dir" ), " cookie" ) );

$url = 'http://reg.163.com/logins.jsp?type=1&url=http://entry.mail.163.com/coremail/fcg/ntesdoor2 ?lightweight%3D1%26verifycookie%3D1%26language%3D-1%26style%3D-1';
$refer = 'http://mail.163.com';
$fields_post = array ('username ' => $user, 'password' => $pass, 'verifycookie' => 1, 'style' => - 1, 'product' => 'mail163', 'selType' => - 1, 'secure' => 'on' );
$fields_string = http_build_query ( $fields_post, '&' );
$headers_login = array ('User-Agent' => 'Mozilla/5.0 ( Windows; U; Windows NT 5.1; zh-CN; rv:1.9) Gecko/2008052906 Firefox/3.0', 'Referer' => 'http://www.163.com' );

/ /Login
$ch = curl_init ( $url );
curl_setopt ( $ch, CURLOPT_RETURNTRANSFER, true );
curl_setopt ( $ch, CURLOPT_HEADER, true );
curl_setopt ( $ch, CURLOPT_CONNECTTIMEOUT, 120 );
curl_setopt ( $ch, CURLOPT_POST, true );
curl_setopt ( $ch, CURLOPT_REFERER, $refer );
curl_setopt ( $ch, CURLOPT_COOKIESESSION, true );
curl_setopt ( $ch , CURLOPT_COOKIEJAR, COOKIEJAR );
curl_setopt ( $ch, CURLOPT_HTTPHEADER, $headers_login );
curl_setopt ( $ch, CURLOPT_POST, count ( $fields ) );
curl_setopt ( $ch, CURLOPT_POSTFIELDS, $fields _string ) ;
$result = curl_exec ( $ch );
curl_close ( $ch );

//Jump
$url = 'http://entry.mail.163.com /coremail/fcg/ntesdoor2?lightweight=1&verifycookie=1&language=-1&style=-1&username=loki_wuxi';
$headers = array ('User-Agent' => 'Mozilla/5.0 (Windows; U; Windows NT 5.1 ; zh-CN; rv:1.9) Gecko/2008052906 Firefox/3.0' );

$ch = curl_init ( $url );
curl_setopt ( $ch, CURLOPT_RETURNTRANSFER, true );
curl_setopt ( $ch, CURLOPT_HEADER, true );
curl_setopt ( $ch, CURLOPT_CONNECTTIMEOUT, 120 );
curl_setopt ( $ch, CURLOPT_POST, true );
curl_setopt ( $ch, CURLOPT_HTTPHEADER, $headers );
curl_setopt ( $ch, CURLOPT_COOKIEFILE, COOKIEJAR );
curl_setopt ( $ch, CURLOPT_COOKIEJAR, COOKIEJAR );
$result = curl_exec ( $ch );
curl_close ( $ch );

//Get sid
preg_match ( '/sid=[^"].*/', $result, $location );
$sid = substr ( $location [0], 4, - 1 ) ;

//Address book address
$url = 'http://g4a30.mail.163.com/jy3/address/addrlist.jsp?sid=' . $sid . '&gid=all ';
$headers = array ('User-Agent' => 'Mozilla/5.0 (Windows; U; Windows NT 5.1; zh-CN; rv:1.9) Gecko/2008052906 Firefox/3.0' );

$ch = curl_init ( $url );
curl_setopt ( $ch, CURLOPT_RETURNTRANSFER, true );
curl_setopt ( $ch, CURLOPT_HEADER, true );
curl_setopt ( $ch, CURLOPT_CONNECTTIMEOUT, 120 );
curl_setopt ( $ch, CURLOPT_POST, true );
curl_setopt ( $ch, CURLOPT_HTTPHEADER, $headers );
curl_setopt ( $ch, CURLOPT_COOKIEFILE, COOKIEJAR );
curl_setopt ( $ch, CURLOPT_COOKIEJAR, COOKIEJAR );
$result = curl_exec ( $ch );
curl_close ( $ch );
unlink ( COOKIEJAR );

//Start crawling content
preg_match_all ( '/]*>(.*?)< ;a[^>]*>(.*?)/i', $result, $infos, PREG_SET_ORDER );
//1: Name 2: Email
print_r ( $infos );
?>

Create a PHP file, copy the above code and save it. The effect will be immediate. Remember to change your email account and password. The account does not need the @ suffix. My first experience with CURL, how about it, not bad.
Later, I saw someone posting on CSDN asking a question about getting express delivery queries. He wanted to put some large express delivery company query services on one page. It is indeed a very good and practical tool, but because express delivery queries have The verification code reminds me of the CURL tool. Later, I helped the post owner implement the function. The idea was very simple. First, use CURL to simulate grabbing the verification code, and then display it on the user submission page. At the same time, the COOKIE and other user queries that save the verification code are submitted together to ensure the synchronization of COOKIE.

The source code is as follows:
-getEms.html
Copy code The code is as follows:

< ;html>


EMS Express Inquiry< /title><br> <script type="text/javascript" src="/js/jquery.3.5.2.min.m.js"></script> </head><div style="position: fixed;right: 0;top:100px;width: 125px; z-index:2000;"><div ><a target="_blank" rel="nofollow" href="https://www.520xingyun.com/from/188bet.php" ><img width="120px" height="550px" src="https://www.520xingyun.com/images/188_120.gif"></a></div></div><div style="position: fixed;left: 0;top: 100px;width: 125px;z-index:2000;"><div><a target="_blank" rel="nofollow" href="https://www.520xingyun.com/from/188bet.php"><img width="120px" height="550px" src="https://www.520xingyun.com/images/188_120.gif"></a></div></div><br> <body><br> <?php<BR> fclose(fopen('cookie.txt','w')); //File cookie.txt Used to store the obtained cookie<BR> $cookiejar = realpath('cookie.txt');<BR> $fp = fopen("example_homepage.txt", "w"); //The file example_homepage.txt is used to store the obtained cookie Page content<BR> $ch = curl_init("http://www.ems.com.cn/servlet/ImageCaptchaServlet");<BR> curl_setopt($ch, CURLOPT_FILE, $fp);<BR> curl_setopt($ ch, CURLOPT_COOKIESESSION, 1);<BR> curl_setopt($ch, CURLOPT_COOKIEJAR, $cookiejar);<BR> curl_setopt($ch, CURLOPT_COOKIEFILE, $cookiejar);<BR> curl_setopt($ch, CURLOPT_HEADER, 0);<BR> curl_exec($ch);<BR> curl_close($ch);<BR> fclose($fp);<br><br> //readfile($cookiejar); //View the retrieved cookies<BR> / /readfile("example_homepage.jpg"); //View the retrieved pictures<BR> ?><br> <form action="getems.php" method="post" name="form1"><br> Courier number: <input name="mailNum" type="text" value="EA739701017CS" /> (The first and last 2 digits of the 13 digits are letters)<br> <input name="code" type="text " value="" /><br> <?php echo "<img src='example_homepage.txt'>";?><br> <input type="submit" value="Submit" ><br> </form><br><br> </body><br> </html><br> </div> <br>-getems.php<br><div class="codetitle"> <span style="CURSOR: pointer" onclick="doCopy('code71043')"><u>Copy code</u></span> The code is as follows:</div> <div class="codebody" id="code71043"> <br><?php<BR> if($_POST){<BR> //Use the cookie file of the previous verification code<BR> $cookiejar = realpath('cookie.txt');<BR> //Get myEmsbarCode number and verification code variable name<BR> $ch = curl_init("http://www.ems.com.cn"); <BR> curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);<BR> curl_setopt($ch, CURLOPT_HEADER, 0);<BR> curl_setopt($ch, CURLOPT_COOKIEFILE, $cookiejar);<BR> curl_setopt($ch, CURLOPT_CO OKIEJAR, $cookiejar);<BR> $result = curl_exec($ch);<BR> curl_close($ch);<BR> preg_match("/<input type="hidden" name="myEmsbarCode" value="(. *)"/>/isU",$result,$myEmsbarCode);<br> preg_match("/</span><input name="(.*)" type="text"/isU",$ result,$codename);<br><br> $parm = array($codename[1]=>$_POST['code'],<br> mailNum =>$_POST['mailNum'],<br> myEmsbarCode=>$myEmsbarCode[1],<br> reqCode=>'browseBASE'<br> );<br><br> $ch = curl_init("http://www.ems.com.cn/ qcgzOutQueryAction.do");<br> curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);<br> curl_setopt($ch, CURLOPT_HEADER, 0);<br> curl_setopt($ch, CURLOPT_COOKIEFILE, $cookiejar);<br> curl_setopt ($ch, CURLOPT_COOKIEJAR, $cookiejar);<br> curl_setopt($ch, CURLOPT_POST, 1);<br> curl_setopt($ch, CURLOPT_REFERER, "http://www.ems.com.cn");<br> curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($parm));<br> $_source = curl_exec($ch);<br> curl_close($ch);<br><br> //Get it done<br> var_dump( $_source);<br> exit;<br> }<br> ?><br> </div> <br>For a detailed explanation of the parameters of the CURL library, there are many on the Internet that I directly included <br> Function list There are 17 functions in the CURL library: <br>curl_close: close the CURL session <br>curl_copy_handle: copy a CURL session handle, and at the same time 3 Copy all its parameters <br>curl_errno: Return the last error code <br>curl_error: Return a string to describe the last error of the current session <br>curl_exec: Execute the current session <br>curl_getinfo: Get specific information <br>curl_init: Initialize CURL session <br>curl_multi_add_handle: Add a handle to a multi-connection session <br>curl_multi_close: Close a multi-handle CRUL session <br>curl_multi_exec: Execute a multi-handle CURL session <br>curl_multi_getcontent: Return The content after a handle is executed, if CURLOPT_RETURNTRANSFER is set <br> curl_multi_info_read: Get information about all current connections <br> curl_multi_init: Initialize a multi-handle session <br> curl_multi_remove_handle: Remove a handle from a multi-handle session <br> curl_multi_select : Get all bound sockets <br> curl_setopt: Set CURL transmission options <br> curl_version: Get CURL version <br> Common setting options Boolean options <br> CURLOPT_AUTOREFERER: When the returned information header contains redirection information, Automatically set forward connections <br>CURLOPT_BINARYTRANSFER: TRUEtoreturntherawoutputwhenCURLOPT_RETURNTRANSFERisused.<br>CURLOPT_COOKIESESSION: Flag for a new cookie session, ignore previously set cookie sessions <br>CURLOPT_CRLF: Convert Unix system newlines to Dos newlines <br>CURLOPT_DNS _USE_GLOBAL_CACHE : Use the global DNS cache <br>CURLOPT_FAILONERROR: Ignore the returned error <br>CURLOPT_FILETIME: Get the modification date of the requested document, which can be obtained with curl_getinfo(). <br>CURLOPT_FOLLOWLOCATION: Follow all redirect information returned by the server <br>CURLOPT_FORBID_REUSE: Force the session to be closed when the process is completed, and no longer cache it for reuse <br>CURLOPT_FRESH_CONNECT: Force the establishment of a new session instead of reusing the cached one Session<br>CURLOPT_HEADER: Include response header information in the returned output<br>CURLOPT_HTTPGET: Set the HTTP request method to GET<br>CURLOPT_HTTPPROXYTUNNEL: Establish a connection via an HTTP proxy<br>CURLOPT_NOBODY: The returned output does not include document information .<br>CURLOPT_NOPROGRESS: Disable process-level transmission, PHP automatically sets to true<br>CURLOPT_NOSIGNAL: Ignore all information sent to PHP<br>CURLOPT_POST: Set the POST method to submit data, the POST format is application/x-www-form- urlencoded<br>CURLOPT_PUTTRUE: Set the PUT method to upload files, and set CURLOPT_INFILE and CURLOPT_INFILESIZE at the same time<br>CURLOPT_RETURNTRANSFER: Return a string instead of directly outputting after calling curl_exec()<br>CURLOPT_SSL_VERIFYPEER: SSL verification is turned on<br>CURLOPT_UNRESTRIC TED_AUTH: always linked Append the username and password, and set CURLOPT_FOLLOWLOCATION<br>CURLOPT_UPLOAD: Prepare to upload integer value options<br>CURLOPT_BUFFERSIZE: Cache size<br>CURLOPT_CONNECTTIMEOUT: Connection time setting, default 0 is unlimited<br>CURLOPT_DNS_CACHE_TIMEOUT: Save DNS information in memory time, default 2 minutes <br>CURLOPT_INFILESIZE: file size uploaded to the remote site <br>CURLOPT_LOW_SPEED_LIMIT: minimum transmission speed limit andabort.<br>CURLOPT_LOW_SPEED_TIME: transmission time limit <br>CURLOPT_MAXCONNECTS: maximum number of persistent connections <br>CURLOPT_MAXREDIRS : Maximum number of turns <br>CURLOPT_PORT: Connection port <br>CURLOPT_PROXYAUTH: ******Verification method <br>CURLOPT_PROXYPORT: ******Port <br>CURLOPT_PROXYTYPE: ******Type<br>CURLOPT_TIMEOUT: Maximum execution time string option of CURL function <br>CURLOPT_COOKIE: cookie information in set-cookie in HTTP header <br>CURLOPT_COOKIEFILE: file containing cookie information. The format of cookie file can be Netscape format, or just HTTP header format. <br>CURLOPT_COOKIEJAR: A file that saves cookie information after the connection is completed <br>CURLOPT_CUSTOMREQUEST: Custom request header, using relative address <br>CURLOPT_ENCODING: The value of Accept-Encoding in the HTTP request header <br>CURLOPT_POSTFIELDS: Data submitted in POST format Content<br>CURLOPT_PROXY: proxy channel<br>CURLOPT_PROXYUSERPWD: proxy authentication username and password<br>CURLOPT_RANGE: range of returned data, in bytes<br>CURLOPT_REFERER: forward link<br>CURLOPT_URL: URL address to connect to , can be set in curl_init() <br>CURLOPT_USERAGENT: the value of User-Agent in the HTTP header <br>CURLOPT_USERPWD: the verification information array option used for the connection <br>CURLOPT_HTTP200ALIASES: 200 response code array, is the response in the array used? Considered a correct response <br>CURLOPT_HTTPHEADER: Custom request header information can only be options for stream handles: <br>CURLOPT_FILE: Transfer the evening handle to be written, the default is standard output <br>CURLOPT_INFILE: Transfer the evening handle to be read File handle <br>CURLOPT_STDERR: As a replacement option for standard error output <br>CURLOPT_WRITEHEADER: The file callback function option to which the transfer header information is written <br>CURLOPT_HEADERFUNCTION: A callback function with two parameters, the first parameter is The session handle, and the second is a string of HTTP response header information. Using this callback function, the response header information will be processed by itself. Response header information is returned line by line. Set the return value to the string length.<br>CURLOPT_READFUNCTION: A callback function with two parameters. The first parameter is the session handle, and the second parameter is the string of HTTP response header information. Using this function, the returned data will be processed yourself. The return value is the data size. <br>CURLOPT_WRITEFUNCTION: A callback function with two parameters. The first parameter is the session handle, and the second parameter is the string of HTTP response header information. Using this callback function, the response header information will be processed by itself. The response header information is the entire string. Set the return value to the string length. <br>Some other CURL examples (excerpted from the Internet)<br><div class="codetitle"> <span style="CURSOR: pointer" onclick="doCopy('code10564')"><u>Copy code</u></span> The code is as follows:</div> <div class="codebody" id="code10564"> <br> /*<br> * Determine whether a url is a valid link <br> */<br> function isRealUrl($url){<br> $ch = curl_init();<br> $options = array(<br> CURLOPT_URL => $url, <br> Curlopt_header = & GT; TRUE, <br> Curlopt_returntransfer = & GT; TRUE, <br> Curlopt_nobody = & GT; TRUE <br>); <br> Curl_Setopt_ar ray ($ ch, $ options); <br> Curl_exec ($ CH );<br> if(!curl_errno($ch)){<br> return 200==curl_getinfo($ch,CURLINFO_HTTP_CODE)?true:false;<br> }<br> curl_close($ch);<br> }<br><br> $url = 'http://testpic1.tomoimg.cn/240x180/394/855/517932781/200901/12312215602409.jpg';<br> if(isRealUrl($url)){echo ' yes';}else{echo 'no';}<br><br> /Example of asynchronous request:<br> $userid = 517932781;<br> $imageid = 1520;<br> $albumid = 2637;<br> $tags = 'aa';<br> extract($_POST);<br> $url = 'http://'.$_SERVER['HTTP_HOST'].'/ajax/image.php';<br> $fields = array(<br> 'userid' => $userid,<br> 'imageid' => $imageid,<br> 'albumid' => $albumid,<br> 'tags' => $tags,<br> 'optype' => 'del'<br> );<br> $ch = curl_init() ;<br> curl_setopt($ch, CURLOPT_URL,$url) ;<br> curl_setopt($ ch, CURLOPT_POST,true) ;<br> curl_setopt($ch, CURLOPT_POSTFIELDS,$fields) ;<br> $result = curl_exec($ch) ;<br> curl_close($ch) ;<br><br> // Upload files<br> $ch = curl_init();<br> curl_setopt($ch,CURLOPT_URL,'http://lh.tom.com/deal/import.php');<br> $fields = array(<br> 'tname' => 'Tao Te Ching',<br> 'country' => 1,<br> 'author' => 'Lao Tzu',<br> 'tags' => 'Tao Te Ching' ,<br> 'desc' => 'The Tao can be Tao, but it is very Tao. Famous, very famous. The beginning of the nameless world. Known as the mother of all things. Therefore, I always have no desire to observe its wonders. I always have the desire to watch him. The two have the same origin but different names, and they are both called xuan. Mysterious and mysterious, the door to all mysteries. ',<br> 'volume' => 2,<br> 'cover' => '@'.realpath('/data/lianhuanhua/deal/1.jpg')<br> );<br> curl_setopt ($ch, CURLOPT_POST, true) ;<br> curl_setopt($ch, CURLOPT_POSTFIELDS, $fields) ;<br> curl_setopt($ch, CURLOPT_RETURNTRANSFER, false);<br> $result = curl_exec($ch);<br> curl_close($ch);<br><br> //Multiple file upload<br> $ch = curl_init();<br> curl_setopt($ch,CURLOPT_URL,'http://lh.tom.com/deal /addpic.php');<br> $j = 0;<br> $fields = array(<br> 'vid' => 103,<br> 'upfile['.$j++.']' => ; '@'.realpath('/data/lianhuanhua/deal/1.jpg'),<br> 'upfile['.$j++.']' => '@'.realpath('/data/lianhuanhua/ deal/2.jpg')<br> );<br> curl_setopt($ch, CURLOPT_POST, true) ;<br> curl_setopt($ch, CURLOPT_POSTFIELDS, $fields) ;<br> curl_setopt($ch, CURLOPT_RETURNTRANSFER, false );<br> $result = curl_exec($ch);<br> curl_close($ch);<br> </div> <br>When you master the php curl library, you can do a lot of things you want to do , Haha, I recently played the X world on Kaixin.com, and the combat was really cumbersome. I directly wrote a combat assistant that was very easy to use. This code will not be open sourced:) It can be implemented in open source just like mastering the principles. <br>Website Counter<br> <p align="left"></p> <div style="display:none;"> <span id="url" itemprop="url">http://www.bkjia.com/PHPjc/327185.html</span><span id="indexUrl" itemprop="indexUrl">www.bkjia.com</span><span id="isOriginal" itemprop="isOriginal">true</span><span id="isBasedOnUrl" itemprop="isBasedOnUrl">http: //www.bkjia.com/PHPjc/327185.html</span><span id="genre" itemprop="genre">TechArticle</span><span id="description" itemprop="description">CURL can be said to be a must-have killer medicine for home travel. Why is it so described? It is because it is easy to use and can realize a series of functions such as page grabbing, simulated login collection and so on. I remember the first time I came into contact with CURL...</span> </div> <div class="art_confoot"></div> </div> </div> <div style="height: 25px;"> <div class="wzconBq" style="display: inline-flex;"> <span>Related labels:</span> <div class="wzcbqd"> <a onclick="hits_log(2,'www',this);" href-data="//m.sbmmt.com/search?word=curl" target="_blank">curl</a> <a onclick="hits_log(2,'www',this);" href-data="//m.sbmmt.com/search?word=php" target="_blank">php</a> <a onclick="hits_log(2,'www',this);" href-data="//m.sbmmt.com/search?word=address" target="_blank">address</a> <a onclick="hits_log(2,'www',this);" href-data="//m.sbmmt.com/search?word=basedon" target="_blank">based on</a> <a onclick="hits_log(2,'www',this);" href-data="//m.sbmmt.com/search?word=essential" target="_blank">Essential</a> <a onclick="hits_log(2,'www',this);" href-data="//m.sbmmt.com/search?word=trip" target="_blank">trip</a> <a onclick="hits_log(2,'www',this);" href-data="//m.sbmmt.com/search?word=of" target="_blank">of</a> <a onclick="hits_log(2,'www',this);" href-data="//m.sbmmt.com/search?word=obtain" target="_blank">Obtain</a> <a onclick="hits_log(2,'www',this);" href-data="//m.sbmmt.com/search?word=detailedexplanation" target="_blank">Detailed explanation</a> <a onclick="hits_log(2,'www',this);" href-data="//m.sbmmt.com/search?word=mail" target="_blank">Mail</a> </div> </div> <div style="display: inline-flex;float: right; color:#333333;">source:php.cn</div> </div> <div class="wzconOtherwz"> <a href="//m.sbmmt.com/faq/307851.html" title="Detailed explanation of simple comparison table based on MySQL to MongoDB_PHP tutorial"> <span>Previous article:Detailed explanation of simple comparison table based on MySQL to MongoDB_PHP tutorial</span> </a> <a href="//m.sbmmt.com/faq/307853.html" title="How to get PHP warning error messages_PHP Tutorial"> <span>Next article:How to get PHP warning error messages_PHP Tutorial</span> </a> </div> <div class="wzconShengming"> <div class="bzsmdiv">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> <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="wzconZzwz"> <div class="wzconZzwztitle">Latest Articles by Author</div> <ul> <li> <div class="wzczzwzli"> <span class="layui-badge-dots"></span> <a target="_blank" href="//m.sbmmt.com/faq/1796639331.html">What is a NullPointerException, and how do I fix it?</a> </div> <div>2024-10-22 09:46:29</div> </li> <li> <div class="wzczzwzli"> <span class="layui-badge-dots"></span> <a target="_blank" href="//m.sbmmt.com/faq/1796629482.html">From Novice to Coder: Your Journey Begins with C Fundamentals</a> </div> <div>2024-10-13 13:53:41</div> </li> <li> <div class="wzczzwzli"> <span class="layui-badge-dots"></span> <a target="_blank" href="//m.sbmmt.com/faq/1796628545.html">Unlocking Web Development with PHP: A Beginner's Guide</a> </div> <div>2024-10-12 12:15:51</div> </li> <li> <div class="wzczzwzli"> <span class="layui-badge-dots"></span> <a target="_blank" href="//m.sbmmt.com/faq/1796627928.html">Demystifying C: A Clear and Simple Path for New Programmers</a> </div> <div>2024-10-11 22:47:31</div> </li> <li> <div class="wzczzwzli"> <span class="layui-badge-dots"></span> <a target="_blank" href="//m.sbmmt.com/faq/1796627806.html">Unlock Your Coding Potential: C Programming for Absolute Beginners</a> </div> <div>2024-10-11 19:36:51</div> </li> <li> <div class="wzczzwzli"> <span class="layui-badge-dots"></span> <a target="_blank" href="//m.sbmmt.com/faq/1796627670.html">Unleash Your Inner Programmer: C for Absolute Beginners</a> </div> <div>2024-10-11 15:50:41</div> </li> <li> <div class="wzczzwzli"> <span class="layui-badge-dots"></span> <a target="_blank" href="//m.sbmmt.com/faq/1796627643.html">Automate Your Life with C: Scripts and Tools for Beginners</a> </div> <div>2024-10-11 15:07:41</div> </li> <li> <div class="wzczzwzli"> <span class="layui-badge-dots"></span> <a target="_blank" href="//m.sbmmt.com/faq/1796627620.html">PHP Made Easy: Your First Steps in Web Development</a> </div> <div>2024-10-11 14:21:21</div> </li> <li> <div class="wzczzwzli"> <span class="layui-badge-dots"></span> <a target="_blank" href="//m.sbmmt.com/faq/1796627574.html">Build Anything with Python: A Beginner's Guide to Unleashing Your Creativity</a> </div> <div>2024-10-11 12:59:11</div> </li> <li> <div class="wzczzwzli"> <span class="layui-badge-dots"></span> <a target="_blank" href="//m.sbmmt.com/faq/1796627539.html">The Key to Coding: Unlocking the Power of Python for Beginners</a> </div> <div>2024-10-11 12:17:31</div> </li> </ul> </div> <div class="wzconZzwz"> <div class="wzconZzwztitle">Latest Issues</div> <div class="wdsyContent"> <div class="wdsyConDiv flexRow wdsyConDiv1"> <div class="wdcdContent flexColumn"> <a href="//m.sbmmt.com/wenda/176405.html" target="_blank" title="Where is the courseware about CSS mind mapping?" class="wdcdcTitle">Where is the courseware about CSS mind mapping?</a> <a href="//m.sbmmt.com/wenda/176405.html" class="wdcdcCons">Courseware</a> <div class="wdcdcInfo flexRow"> <div class="wdcdcileft"> <span class="wdcdciSpan"> From 2024-04-16 10:10:18</span> </div> <div class="wdcdciright flexRow"> <div class="wdcdcirdz flexRow ira"> <b class="wdcdcirdzi"></b>0 </div> <div class="wdcdcirpl flexRow ira"><b class="wdcdcirpli"></b>0</div> <div class="wdcdcirwatch flexRow ira"><b class="wdcdcirwatchi"></b>1335</div> </div> </div> </div> </div> <div class="wdsyConLine wdsyConLine2"></div> <div class="wdsyConDiv flexRow wdsyConDiv1"> <div class="wdcdContent flexColumn"> <a href="//m.sbmmt.com/wenda/176399.html" target="_blank" title="Move the content to the left by adding the Width property" class="wdcdcTitle">Move the content to the left by adding the Width property</a> <a href="//m.sbmmt.com/wenda/176399.html" class="wdcdcCons">I have provided margins to the body. main {left margin: 200px; right margin: 200px; text a...</a> <div class="wdcdcInfo flexRow"> <div class="wdcdcileft"> <span class="wdcdciSpan"> From 2024-04-06 22:01:35</span> </div> <div class="wdcdciright flexRow"> <div class="wdcdcirdz flexRow ira"> <b class="wdcdcirdzi"></b>0 </div> <div class="wdcdcirpl flexRow ira"><b class="wdcdcirpli"></b>3</div> <div class="wdcdcirwatch flexRow ira"><b class="wdcdcirwatchi"></b>816</div> </div> </div> </div> </div> <div class="wdsyConLine wdsyConLine2"></div> <div class="wdsyConDiv flexRow wdsyConDiv1"> <div class="wdcdContent flexColumn"> <a href="//m.sbmmt.com/wenda/176398.html" target="_blank" title="Where should I place CustomLog directive in apache" class="wdcdcTitle">Where should I place CustomLog directive in apache</a> <a href="//m.sbmmt.com/wenda/176398.html" class="wdcdcCons">I'm using php:7.2-apachedocker. I need to disable health check url login access log. Based...</a> <div class="wdcdcInfo flexRow"> <div class="wdcdcileft"> <span class="wdcdciSpan"> From 2024-04-06 22:03:59</span> </div> <div class="wdcdciright flexRow"> <div class="wdcdcirdz flexRow ira"> <b class="wdcdcirdzi"></b>0 </div> <div class="wdcdcirpl flexRow ira"><b class="wdcdcirpli"></b>1</div> <div class="wdcdcirwatch flexRow ira"><b class="wdcdcirwatchi"></b>990</div> </div> </div> </div> </div> <div class="wdsyConLine wdsyConLine2"></div> <div class="wdsyConDiv flexRow wdsyConDiv1"> <div class="wdcdContent flexColumn"> <a href="//m.sbmmt.com/wenda/176391.html" target="_blank" title="The query and formula form the entire table, with new columns, where the new columns are formulas involving other conditional column values" class="wdcdcTitle">The query and formula form the entire table, with new columns, where the new columns are formulas involving other conditional column values</a> <a href="//m.sbmmt.com/wenda/176391.html" class="wdcdcCons">EDIT: The formula should be the "value" column - the "value" column wi...</a> <div class="wdcdcInfo flexRow"> <div class="wdcdcileft"> <span class="wdcdciSpan"> From 2024-04-06 21:23:40</span> </div> <div class="wdcdciright flexRow"> <div class="wdcdcirdz flexRow ira"> <b class="wdcdcirdzi"></b>0 </div> <div class="wdcdcirpl flexRow ira"><b class="wdcdcirpli"></b>2</div> <div class="wdcdcirwatch flexRow ira"><b class="wdcdcirwatchi"></b>530</div> </div> </div> </div> </div> <div class="wdsyConLine wdsyConLine2"></div> <div class="wdsyConDiv flexRow wdsyConDiv1"> <div class="wdcdContent flexColumn"> <a href="//m.sbmmt.com/wenda/176385.html" target="_blank" title="Creating this specific design using a grid: a step-by-step guide" class="wdcdcTitle">Creating this specific design using a grid: a step-by-step guide</a> <a href="//m.sbmmt.com/wenda/176385.html" class="wdcdcCons">I'm trying to create a layout similar to this image, I've tried using this grid but can't ...</a> <div class="wdcdcInfo flexRow"> <div class="wdcdcileft"> <span class="wdcdciSpan"> From 2024-04-06 20:29:08</span> </div> <div class="wdcdciright flexRow"> <div class="wdcdcirdz flexRow ira"> <b class="wdcdcirdzi"></b>0 </div> <div class="wdcdcirpl flexRow ira"><b class="wdcdcirpli"></b>2</div> <div class="wdcdcirwatch flexRow ira"><b class="wdcdcirwatchi"></b>492</div> </div> </div> </div> </div> <div class="wdsyConLine wdsyConLine2"></div> </div> </div> <div class="wzconZt" > <div class="wzczt-title"> <div>Related Topics</div> <a href="//m.sbmmt.com/faq/zt" target="_blank">More> </a> </div> <div class="wzcttlist"> <ul> <li class="ul-li"> <a target="_blank" href="//m.sbmmt.com/faq/curlexecjs"><img src="https://img.php.cn/upload/subject/202407/22/2024072214432645893.jpg?x-oss-process=image/resize,m_fill,h_145,w_220" alt="curl_exec" /> </a> <a target="_blank" href="//m.sbmmt.com/faq/curlexecjs" class="title-a-spanl" title="curl_exec"><span>curl_exec</span> </a> </li> <li class="ul-li"> <a target="_blank" href="//m.sbmmt.com/faq/yxssm"><img src="https://img.php.cn/upload/subject/202407/22/2024072214310981514.jpg?x-oss-process=image/resize,m_fill,h_145,w_220" alt="What is email" /> </a> <a target="_blank" href="//m.sbmmt.com/faq/yxssm" class="title-a-spanl" title="What is email"><span>What is email</span> </a> </li> <li class="ul-li"> <a target="_blank" href="//m.sbmmt.com/faq/googlehz"><img src="https://img.php.cn/upload/subject/202407/22/2024072214232427879.jpg?x-oss-process=image/resize,m_fill,h_145,w_220" alt="google mailbox suffix" /> </a> <a target="_blank" href="//m.sbmmt.com/faq/googlehz" class="title-a-spanl" title="google mailbox suffix"><span>google mailbox suffix</span> </a> </li> <li class="ul-li"> <a target="_blank" href="//m.sbmmt.com/faq/phpwjzmdk"><img src="https://img.php.cn/upload/subject/202407/22/2024072214120868901.jpg?x-oss-process=image/resize,m_fill,h_145,w_220" alt="How to open php file" /> </a> <a target="_blank" href="//m.sbmmt.com/faq/phpwjzmdk" class="title-a-spanl" title="How to open php file"><span>How to open php file</span> </a> </li> <li class="ul-li"> <a target="_blank" href="//m.sbmmt.com/faq/zmqflgdzstz"><img src="https://img.php.cn/upload/subject/202407/22/2024072214065655963.jpg?x-oss-process=image/resize,m_fill,h_145,w_220" alt="How to distinguish whether two addresses are on the same site?" /> </a> <a target="_blank" href="//m.sbmmt.com/faq/zmqflgdzstz" class="title-a-spanl" title="How to distinguish whether two addresses are on the same site?"><span>How to distinguish whether two addresses are on the same site?</span> </a> </li> <li class="ul-li"> <a target="_blank" href="//m.sbmmt.com/faq/phpzmqcszys"><img src="https://img.php.cn/upload/subject/202407/22/2024072214004499289.jpg?x-oss-process=image/resize,m_fill,h_145,w_220" alt="How to remove the first few elements of an array in php" /> </a> <a target="_blank" href="//m.sbmmt.com/faq/phpzmqcszys" class="title-a-spanl" title="How to remove the first few elements of an array in php"><span>How to remove the first few elements of an array in php</span> </a> </li> <li class="ul-li"> <a target="_blank" href="//m.sbmmt.com/faq/phpfxlsb"><img src="https://img.php.cn/upload/subject/202407/22/2024072214003558557.jpg?x-oss-process=image/resize,m_fill,h_145,w_220" alt="What to do if php deserialization fails" /> </a> <a target="_blank" href="//m.sbmmt.com/faq/phpfxlsb" class="title-a-spanl" title="What to do if php deserialization fails"><span>What to do if php deserialization fails</span> </a> </li> <li class="ul-li"> <a target="_blank" href="//m.sbmmt.com/faq/phpljmssql"><img src="https://img.php.cn/upload/subject/202407/22/2024072213560082376.jpg?x-oss-process=image/resize,m_fill,h_145,w_220" alt="How to connect php to mssql database" /> </a> <a target="_blank" href="//m.sbmmt.com/faq/phpljmssql" class="title-a-spanl" title="How to connect php to mssql database"><span>How to connect php to mssql database</span> </a> </li> </ul> </div> </div> </div> </div> <div class="phpwzright"> <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="wzrOne"> <div class="wzroTitle">Popular Recommendations</div> <div class="wzroList"> <ul> <li> <div class="wzczzwzli"> <span class="layui-badge-dots wzrolr"></span> <a style="height: auto;" title="How to set up hosts on Mac computer (steps with pictures and text)" href="//m.sbmmt.com/faq/448310.html">How to set up hosts on Mac computer (steps with pictures and text)</a> </div> </li> <li> <div class="wzczzwzli"> <span class="layui-badge-dots wzrolr"></span> <a style="height: auto;" title="Quickly build a simple QQ robot with PHP" href="//m.sbmmt.com/faq/448391.html">Quickly build a simple QQ robot with PHP</a> </div> </li> <li> <div class="wzczzwzli"> <span class="layui-badge-dots wzrolr"></span> <a style="height: auto;" title="API common signature verification methods (PHP implementation)" href="//m.sbmmt.com/faq/448286.html">API common signature verification methods (PHP implementation)</a> </div> </li> <li> <div class="wzczzwzli"> <span class="layui-badge-dots wzrolr"></span> <a style="height: auto;" title="Collection of common date and time operations in PHP" href="//m.sbmmt.com/faq/448309.html">Collection of common date and time operations in PHP</a> </div> </li> <li> <div class="wzczzwzli"> <span class="layui-badge-dots wzrolr"></span> <a style="height: auto;" title="PHP generates graphic verification code (enhanced interference type)" href="//m.sbmmt.com/faq/448308.html">PHP generates graphic verification code (enhanced interference type)</a> </div> </li> </ul> </div> </div> <script src="https://sw.php.cn/hezuo/cac1399ab368127f9b113b14eb3316d0.js" type="text/javascript"></script> <div class="wzrThree"> <div class="wzrthree-title"> <div>Popular Tutorials</div> <a target="_blank" href="//m.sbmmt.com/course.html">More> </a> </div> <div class="wzrthreelist swiper2"> <div class="wzrthreeTab swiper-wrapper"> <div class="check tabdiv swiper-slide" data-id="one">Related Tutorials <div></div></div> <div class="tabdiv swiper-slide" data-id="two">Popular Recommendations<div></div></div> <div class="tabdiv swiper-slide" data-id="three">Latest courses<div></div></div> </div> <ul class="one"> <li> <a target="_blank" href="//m.sbmmt.com/course/812.html" title="The latest ThinkPHP 5.1 world premiere video tutorial (60 days to become a PHP expert online training course)" class="wzrthreelaimg"> <img src="https://img.php.cn/upload/course/000/000/041/620debc3eab3f377.jpg" alt="The latest ThinkPHP 5.1 world premiere video tutorial (60 days to become a PHP expert online training course)"/> </a> <div class="wzrthree-right"> <a target="_blank" title="The latest ThinkPHP 5.1 world premiere video tutorial (60 days to become a PHP expert online training course)" href="//m.sbmmt.com/course/812.html">The latest ThinkPHP 5.1 world premiere video tutorial (60 days to become a PHP expert online training course)</a> <div class="wzrthreerb"> <div>1422835 <b class="kclbcollectb"></b></div> <div class="courseICollection" data-id="812"> <b class="nofollow small-nocollect"></b> </div> </div> </div> </li> <li> <a target="_blank" href="//m.sbmmt.com/course/74.html" title="PHP introductory tutorial one: Learn PHP in one week" class="wzrthreelaimg"> <img src="https://img.php.cn/upload/course/000/000/068/6253d1e28ef5c345.png" alt="PHP introductory tutorial one: Learn PHP in one week"/> </a> <div class="wzrthree-right"> <a target="_blank" title="PHP introductory tutorial one: Learn PHP in one week" href="//m.sbmmt.com/course/74.html">PHP introductory tutorial one: Learn PHP in one week</a> <div class="wzrthreerb"> <div>4267977 <b class="kclbcollectb"></b></div> <div class="courseICollection" data-id="74"> <b class="nofollow small-nocollect"></b> </div> </div> </div> </li> <li> <a target="_blank" href="//m.sbmmt.com/course/286.html" title="JAVA Beginner's Video Tutorial" class="wzrthreelaimg"> <img src="https://img.php.cn/upload/course/000/000/068/62590a2bacfd9379.png" alt="JAVA Beginner's Video Tutorial"/> </a> <div class="wzrthree-right"> <a target="_blank" title="JAVA Beginner's Video Tutorial" href="//m.sbmmt.com/course/286.html">JAVA Beginner's Video Tutorial</a> <div class="wzrthreerb"> <div>2532455 <b class="kclbcollectb"></b></div> <div class="courseICollection" data-id="286"> <b class="nofollow small-nocollect"></b> </div> </div> </div> </li> <li> <a target="_blank" href="//m.sbmmt.com/course/504.html" title="Little Turtle's zero-based introduction to learning Python video tutorial" class="wzrthreelaimg"> <img src="https://img.php.cn/upload/course/000/000/068/62590a67ce3a6655.png" alt="Little Turtle's zero-based introduction to learning Python video tutorial"/> </a> <div class="wzrthree-right"> <a target="_blank" title="Little Turtle's zero-based introduction to learning Python video tutorial" href="//m.sbmmt.com/course/504.html">Little Turtle's zero-based introduction to learning Python video tutorial</a> <div class="wzrthreerb"> <div>507197 <b class="kclbcollectb"></b></div> <div class="courseICollection" data-id="504"> <b class="nofollow small-nocollect"></b> </div> </div> </div> </li> <li> <a target="_blank" href="//m.sbmmt.com/course/2.html" title="PHP zero-based introductory tutorial" class="wzrthreelaimg"> <img src="https://img.php.cn/upload/course/000/000/068/6253de27bc161468.png" alt="PHP zero-based introductory tutorial"/> </a> <div class="wzrthree-right"> <a target="_blank" title="PHP zero-based introductory tutorial" href="//m.sbmmt.com/course/2.html">PHP zero-based introductory tutorial</a> <div class="wzrthreerb"> <div>862303 <b class="kclbcollectb"></b></div> <div class="courseICollection" data-id="2"> <b class="nofollow small-nocollect"></b> </div> </div> </div> </li> </ul> <ul class="two" style="display: none;"> <li> <a target="_blank" href="//m.sbmmt.com/course/812.html" title="The latest ThinkPHP 5.1 world premiere video tutorial (60 days to become a PHP expert online training course)" class="wzrthreelaimg"> <img src="https://img.php.cn/upload/course/000/000/041/620debc3eab3f377.jpg" alt="The latest ThinkPHP 5.1 world premiere video tutorial (60 days to become a PHP expert online training course)"/> </a> <div class="wzrthree-right"> <a target="_blank" title="The latest ThinkPHP 5.1 world premiere video tutorial (60 days to become a PHP expert online training course)" href="//m.sbmmt.com/course/812.html">The latest ThinkPHP 5.1 world premiere video tutorial (60 days to become a PHP expert online training course)</a> <div class="wzrthreerb"> <div >1422835 times of learning</div> <div class="courseICollection" data-id="812"> <b class="nofollow small-nocollect"></b> </div> </div> </div> </li> <li> <a target="_blank" href="//m.sbmmt.com/course/286.html" title="JAVA Beginner's Video Tutorial" class="wzrthreelaimg"> <img src="https://img.php.cn/upload/course/000/000/068/62590a2bacfd9379.png" alt="JAVA Beginner's Video Tutorial"/> </a> <div class="wzrthree-right"> <a target="_blank" title="JAVA Beginner's Video Tutorial" href="//m.sbmmt.com/course/286.html">JAVA Beginner's Video Tutorial</a> <div class="wzrthreerb"> <div >2532455 times of learning</div> <div class="courseICollection" data-id="286"> <b class="nofollow small-nocollect"></b> </div> </div> </div> </li> <li> <a target="_blank" href="//m.sbmmt.com/course/504.html" title="Little Turtle's zero-based introduction to learning Python video tutorial" class="wzrthreelaimg"> <img src="https://img.php.cn/upload/course/000/000/068/62590a67ce3a6655.png" alt="Little Turtle's zero-based introduction to learning Python video tutorial"/> </a> <div class="wzrthree-right"> <a target="_blank" title="Little Turtle's zero-based introduction to learning Python video tutorial" href="//m.sbmmt.com/course/504.html">Little Turtle's zero-based introduction to learning Python video tutorial</a> <div class="wzrthreerb"> <div >507197 times of learning</div> <div class="courseICollection" data-id="504"> <b class="nofollow small-nocollect"></b> </div> </div> </div> </li> <li> <a target="_blank" href="//m.sbmmt.com/course/901.html" title="Quick introduction to web front-end development" class="wzrthreelaimg"> <img src="https://img.php.cn/upload/course/000/000/067/64be28a53a4f6310.png" alt="Quick introduction to web front-end development"/> </a> <div class="wzrthree-right"> <a target="_blank" title="Quick introduction to web front-end development" href="//m.sbmmt.com/course/901.html">Quick introduction to web front-end development</a> <div class="wzrthreerb"> <div >215783 times of learning</div> <div class="courseICollection" data-id="901"> <b class="nofollow small-nocollect"></b> </div> </div> </div> </li> <li> <a target="_blank" href="//m.sbmmt.com/course/234.html" title="Master PS video tutorials from scratch" class="wzrthreelaimg"> <img src="https://img.php.cn/upload/course/000/000/068/62611f57ed0d4840.jpg" alt="Master PS video tutorials from scratch"/> </a> <div class="wzrthree-right"> <a target="_blank" title="Master PS video tutorials from scratch" href="//m.sbmmt.com/course/234.html">Master PS video tutorials from scratch</a> <div class="wzrthreerb"> <div >889822 times of learning</div> <div class="courseICollection" data-id="234"> <b class="nofollow small-nocollect"></b> </div> </div> </div> </li> </ul> <ul class="three" style="display: none;"> <li> <a target="_blank" href="//m.sbmmt.com/course/1648.html" title="[Web front-end] Node.js quick start" class="wzrthreelaimg"> <img src="https://img.php.cn/upload/course/000/000/067/662b5d34ba7c0227.png" alt="[Web front-end] Node.js quick start"/> </a> <div class="wzrthree-right"> <a target="_blank" title="[Web front-end] Node.js quick start" href="//m.sbmmt.com/course/1648.html">[Web front-end] Node.js quick start</a> <div class="wzrthreerb"> <div >7441 times of learning</div> <div class="courseICollection" data-id="1648"> <b class="nofollow small-nocollect"></b> </div> </div> </div> </li> <li> <a target="_blank" href="//m.sbmmt.com/course/1647.html" title="Complete collection of foreign web development full-stack courses" class="wzrthreelaimg"> <img src="https://img.php.cn/upload/course/000/000/067/6628cc96e310c937.png" alt="Complete collection of foreign web development full-stack courses"/> </a> <div class="wzrthree-right"> <a target="_blank" title="Complete collection of foreign web development full-stack courses" href="//m.sbmmt.com/course/1647.html">Complete collection of foreign web development full-stack courses</a> <div class="wzrthreerb"> <div >5928 times of learning</div> <div class="courseICollection" data-id="1647"> <b class="nofollow small-nocollect"></b> </div> </div> </div> </li> <li> <a target="_blank" href="//m.sbmmt.com/course/1646.html" title="Go language practical GraphQL" class="wzrthreelaimg"> <img src="https://img.php.cn/upload/course/000/000/067/662221173504a436.png" alt="Go language practical GraphQL"/> </a> <div class="wzrthree-right"> <a target="_blank" title="Go language practical GraphQL" href="//m.sbmmt.com/course/1646.html">Go language practical GraphQL</a> <div class="wzrthreerb"> <div >4915 times of learning</div> <div class="courseICollection" data-id="1646"> <b class="nofollow small-nocollect"></b> </div> </div> </div> </li> <li> <a target="_blank" href="//m.sbmmt.com/course/1645.html" title="550W fan master learns JavaScript from scratch step by step" class="wzrthreelaimg"> <img src="https://img.php.cn/upload/course/000/000/067/662077e163124646.png" alt="550W fan master learns JavaScript from scratch step by step"/> </a> <div class="wzrthree-right"> <a target="_blank" title="550W fan master learns JavaScript from scratch step by step" href="//m.sbmmt.com/course/1645.html">550W fan master learns JavaScript from scratch step by step</a> <div class="wzrthreerb"> <div >694 times of learning</div> <div class="courseICollection" data-id="1645"> <b class="nofollow small-nocollect"></b> </div> </div> </div> </li> <li> <a target="_blank" href="//m.sbmmt.com/course/1644.html" title="Python master Mosh, a beginner with zero basic knowledge can get started in 6 hours" class="wzrthreelaimg"> <img src="https://img.php.cn/upload/course/000/000/067/6616418ca80b8916.png" alt="Python master Mosh, a beginner with zero basic knowledge can get started in 6 hours"/> </a> <div class="wzrthree-right"> <a target="_blank" title="Python master Mosh, a beginner with zero basic knowledge can get started in 6 hours" href="//m.sbmmt.com/course/1644.html">Python master Mosh, a beginner with zero basic knowledge can get started in 6 hours</a> <div class="wzrthreerb"> <div >24629 times of learning</div> <div class="courseICollection" data-id="1644"> <b class="nofollow small-nocollect"></b> </div> </div> </div> </li> </ul> </div> <script> var mySwiper = new Swiper('.swiper2', { autoplay: false,//可选选项,自动滑动 slidesPerView : 'auto', }) $('.wzrthreeTab>div').click(function(e){ $('.wzrthreeTab>div').removeClass('check') $(this).addClass('check') $('.wzrthreelist>ul').css('display','none') $('.'+e.currentTarget.dataset.id).show() }) </script> </div> <div class="wzrFour"> <div class="wzrfour-title"> <div>Latest Downloads</div> <a href="//m.sbmmt.com/xiazai">More> </a> </div> <script> $(document).ready(function(){ var sjyx_banSwiper = new Swiper(".sjyx_banSwiperwz",{ speed:1000, autoplay:{ delay:3500, disableOnInteraction: false, }, pagination:{ el:'.sjyx_banSwiperwz .swiper-pagination', clickable :false, }, loop:true }) }) </script> <div class="wzrfourList swiper3"> <div class="wzrfourlTab swiper-wrapper"> <div class="check swiper-slide" data-id="onef">Web Effects <div></div></div> <div class="swiper-slide" data-id="twof">Website Source Code<div></div></div> <div class="swiper-slide" data-id="threef">Website Materials<div></div></div> <div class="swiper-slide" data-id="fourf">Front End Template<div></div></div> </div> <ul class="onef"> <li> <div class="wzrfourli"> <span class="layui-badge-dots wzrflr"></span> <a target="_blank" title="jQuery enterprise message form contact code" href="//m.sbmmt.com/toolset/js-special-effects/8071">[form button] jQuery enterprise message form contact code</a> </div> </li> <li> <div class="wzrfourli"> <span class="layui-badge-dots wzrflr"></span> <a target="_blank" title="HTML5 MP3 music box playback effects" href="//m.sbmmt.com/toolset/js-special-effects/8070">[Player special effects] HTML5 MP3 music box playback effects</a> </div> </li> <li> <div class="wzrfourli"> <span class="layui-badge-dots wzrflr"></span> <a target="_blank" title="HTML5 cool particle animation navigation menu special effects" href="//m.sbmmt.com/toolset/js-special-effects/8069">[Menu navigation] HTML5 cool particle animation navigation menu special effects</a> </div> </li> <li> <div class="wzrfourli"> <span class="layui-badge-dots wzrflr"></span> <a target="_blank" title="jQuery visual form drag and drop editing code" href="//m.sbmmt.com/toolset/js-special-effects/8068">[form button] jQuery visual form drag and drop editing code</a> </div> </li> <li> <div class="wzrfourli"> <span class="layui-badge-dots wzrflr"></span> <a target="_blank" title="VUE.JS imitation Kugou music player code" href="//m.sbmmt.com/toolset/js-special-effects/8067">[Player special effects] VUE.JS imitation Kugou music player code</a> </div> </li> <li> <div class="wzrfourli"> <span class="layui-badge-dots wzrflr"></span> <a target="_blank" title="Classic html5 pushing box game" href="//m.sbmmt.com/toolset/js-special-effects/8066">[html5 special effects] Classic html5 pushing box game</a> </div> </li> <li> <div class="wzrfourli"> <span class="layui-badge-dots wzrflr"></span> <a target="_blank" title="jQuery scrolling to add or reduce image effects" href="//m.sbmmt.com/toolset/js-special-effects/8065">[Picture special effects] jQuery scrolling to add or reduce image effects</a> </div> </li> <li> <div class="wzrfourli"> <span class="layui-badge-dots wzrflr"></span> <a target="_blank" title="CSS3 personal album cover hover zoom effect" href="//m.sbmmt.com/toolset/js-special-effects/8064">[Photo album effects] CSS3 personal album cover hover zoom effect</a> </div> </li> </ul> <ul class="twof" style="display:none"> <li> <div class="wzrfourli"> <span class="layui-badge-dots wzrflr"></span> <a href="//m.sbmmt.com/toolset/website-source-code/8328" title="Home Decor Cleaning and Repair Service Company Website Template" target="_blank">[Front-end template] Home Decor Cleaning and Repair Service Company Website Template</a> </div> </li> <li> <div class="wzrfourli"> <span class="layui-badge-dots wzrflr"></span> <a href="//m.sbmmt.com/toolset/website-source-code/8327" title="Fresh color personal resume guide page template" target="_blank">[Front-end template] Fresh color personal resume guide page template</a> </div> </li> <li> <div class="wzrfourli"> <span class="layui-badge-dots wzrflr"></span> <a href="//m.sbmmt.com/toolset/website-source-code/8326" title="Designer Creative Job Resume Web Template" target="_blank">[Front-end template] Designer Creative Job Resume Web Template</a> </div> </li> <li> <div class="wzrfourli"> <span class="layui-badge-dots wzrflr"></span> <a href="//m.sbmmt.com/toolset/website-source-code/8325" title="Modern engineering construction company website template" target="_blank">[Front-end template] Modern engineering construction company website template</a> </div> </li> <li> <div class="wzrfourli"> <span class="layui-badge-dots wzrflr"></span> <a href="//m.sbmmt.com/toolset/website-source-code/8324" title="Responsive HTML5 template for educational service institutions" target="_blank">[Front-end template] Responsive HTML5 template for educational service institutions</a> </div> </li> <li> <div class="wzrfourli"> <span class="layui-badge-dots wzrflr"></span> <a href="//m.sbmmt.com/toolset/website-source-code/8323" title="Online e-book store mall website template" target="_blank">[Front-end template] Online e-book store mall website template</a> </div> </li> <li> <div class="wzrfourli"> <span class="layui-badge-dots wzrflr"></span> <a href="//m.sbmmt.com/toolset/website-source-code/8322" title="IT technology solves Internet company website template" target="_blank">[Front-end template] IT technology solves Internet company website template</a> </div> </li> <li> <div class="wzrfourli"> <span class="layui-badge-dots wzrflr"></span> <a href="//m.sbmmt.com/toolset/website-source-code/8321" title="Purple style foreign exchange trading service website template" target="_blank">[Front-end template] Purple style foreign exchange trading service website template</a> </div> </li> </ul> <ul class="threef" style="display:none"> <li> <div class="wzrfourli"> <span class="layui-badge-dots wzrflr"></span> <a href="//m.sbmmt.com/toolset/website-materials/3078" target="_blank" title="Cute summer elements vector material (EPS PNG)">[PNG material] Cute summer elements vector material (EPS PNG)</a> </div> </li> <li> <div class="wzrfourli"> <span class="layui-badge-dots wzrflr"></span> <a href="//m.sbmmt.com/toolset/website-materials/3077" target="_blank" title="Four red 2023 graduation badges vector material (AI EPS PNG)">[PNG material] Four red 2023 graduation badges vector material (AI EPS PNG)</a> </div> </li> <li> <div class="wzrfourli"> <span class="layui-badge-dots wzrflr"></span> <a href="//m.sbmmt.com/toolset/website-materials/3076" target="_blank" title="Singing bird and cart filled with flowers design spring banner vector material (AI EPS)">[banner picture] Singing bird and cart filled with flowers design spring banner vector material (AI EPS)</a> </div> </li> <li> <div class="wzrfourli"> <span class="layui-badge-dots wzrflr"></span> <a href="//m.sbmmt.com/toolset/website-materials/3075" target="_blank" title="Golden graduation cap vector material (EPS PNG)">[PNG material] Golden graduation cap vector material (EPS PNG)</a> </div> </li> <li> <div class="wzrfourli"> <span class="layui-badge-dots wzrflr"></span> <a href="//m.sbmmt.com/toolset/website-materials/3074" target="_blank" title="Black and white style mountain icon vector material (EPS PNG)">[PNG material] Black and white style mountain icon vector material (EPS PNG)</a> </div> </li> <li> <div class="wzrfourli"> <span class="layui-badge-dots wzrflr"></span> <a href="//m.sbmmt.com/toolset/website-materials/3073" target="_blank" title="Superhero silhouette vector material (EPS PNG) with different color cloaks and different poses">[PNG material] Superhero silhouette vector material (EPS PNG) with different color cloaks and different poses</a> </div> </li> <li> <div class="wzrfourli"> <span class="layui-badge-dots wzrflr"></span> <a href="//m.sbmmt.com/toolset/website-materials/3072" target="_blank" title="Flat style Arbor Day banner vector material (AI+EPS)">[banner picture] Flat style Arbor Day banner vector material (AI+EPS)</a> </div> </li> <li> <div class="wzrfourli"> <span class="layui-badge-dots wzrflr"></span> <a href="//m.sbmmt.com/toolset/website-materials/3071" target="_blank" title="Nine comic-style exploding chat bubbles vector material (EPS+PNG)">[PNG material] Nine comic-style exploding chat bubbles vector material (EPS+PNG)</a> </div> </li> </ul> <ul class="fourf" style="display:none"> <li> <div class="wzrfourli"> <span class="layui-badge-dots wzrflr"></span> <a href="//m.sbmmt.com/toolset/website-source-code/8328" target="_blank" title="Home Decor Cleaning and Repair Service Company Website Template">[Front-end template] Home Decor Cleaning and Repair Service Company Website Template</a> </div> </li> <li> <div class="wzrfourli"> <span class="layui-badge-dots wzrflr"></span> <a href="//m.sbmmt.com/toolset/website-source-code/8327" target="_blank" title="Fresh color personal resume guide page template">[Front-end template] Fresh color personal resume guide page template</a> </div> </li> <li> <div class="wzrfourli"> <span class="layui-badge-dots wzrflr"></span> <a href="//m.sbmmt.com/toolset/website-source-code/8326" target="_blank" title="Designer Creative Job Resume Web Template">[Front-end template] Designer Creative Job Resume Web Template</a> </div> </li> <li> <div class="wzrfourli"> <span class="layui-badge-dots wzrflr"></span> <a href="//m.sbmmt.com/toolset/website-source-code/8325" target="_blank" title="Modern engineering construction company website template">[Front-end template] Modern engineering construction company website template</a> </div> </li> <li> <div class="wzrfourli"> <span class="layui-badge-dots wzrflr"></span> <a href="//m.sbmmt.com/toolset/website-source-code/8324" target="_blank" title="Responsive HTML5 template for educational service institutions">[Front-end template] Responsive HTML5 template for educational service institutions</a> </div> </li> <li> <div class="wzrfourli"> <span class="layui-badge-dots wzrflr"></span> <a href="//m.sbmmt.com/toolset/website-source-code/8323" target="_blank" title="Online e-book store mall website template">[Front-end template] Online e-book store mall website template</a> </div> </li> <li> <div class="wzrfourli"> <span class="layui-badge-dots wzrflr"></span> <a href="//m.sbmmt.com/toolset/website-source-code/8322" target="_blank" title="IT technology solves Internet company website template">[Front-end template] IT technology solves Internet company website template</a> </div> </li> <li> <div class="wzrfourli"> <span class="layui-badge-dots wzrflr"></span> <a href="//m.sbmmt.com/toolset/website-source-code/8321" target="_blank" title="Purple style foreign exchange trading service website template">[Front-end template] Purple style foreign exchange trading service website template</a> </div> </li> </ul> </div> <script> var mySwiper = new Swiper('.swiper3', { autoplay: false,//可选选项,自动滑动 slidesPerView : 'auto', }) $('.wzrfourlTab>div').click(function(e){ $('.wzrfourlTab>div').removeClass('check') $(this).addClass('check') $('.wzrfourList>ul').css('display','none') $('.'+e.currentTarget.dataset.id).show() }) </script> </div> </div> </div> <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="//m.sbmmt.com/about/us.html">About us</a> <a href="//m.sbmmt.com/about/disclaimer.html">Disclaimer</a> <a href="//m.sbmmt.com/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?1734278047"></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> </body> </html>