PHP+jQuery+POST collection web page example
Release: 2016-07-25 08:47:34
Original
1009 people have browsed it
Use JQuery's powerful DOM manipulation capabilities to collect page data, then organize the data and send it to itself in the form of POST, itself receives the data from POST and then writes it to the file in CSV format.
Disclaimer: This program is only for use For learning and demonstration purposes, please do not frequently collect the URLs in the examples; so as not to cause unnecessary trouble to the target website! Everyone is welcome to provide comments
- set_time_limit(0);
- $num = range(0, 49100, 100);
- $base = 'http://www.zjchina.org/mspMajorIndexAction.fo?&startcount=';
- $page = isset($_GET['startcount']) ? $_GET['startcount'] : 0;
- $next_url = $_SERVER['SCRIPT_NAME'].'?startcount='.($page+1);
- if ( !isset($num[$page]) ) { exit('Collection completed'); }
- //Submit data
- if ( $_POST && count($_POST) && isset($_POST['send' ]) ) {
- $send = $_POST['send'];
- $file = dirname(__FILE__).'/data.csv';
- if ( file_exists($file) ) { unset($send[0]) ; }
- $fp = fopen($file, 'a+');
- foreach($send as $line) { fputcsv($fp, $line); }
- fclose($fp);
- exit(json_encode(array( 'jump' => $next_url)));
- }
-
- //Grab data
- $html = file_get_contents($base.$num[$page]);
- $html = str_replace('script', 'pre ', $html);
- $html .= '
-
- $(function(){
- var data = [];
- var url = window.location.href;
- var $tr = $("#A5 table tr" );
- $tr.each(function(){
- var tds = [];
- $(this).children("td").each(function(){
- tds.push($(this).text( ));
- });
- data.push(tds);
- });
- $.post(url, { send: data }, function(ret){
- if ( ret.jump ) {
- window.location. href = ret.jump;
- }
- }, "json");
- });
- ';
- echo $html;
Copy code
|
Statement of this Website
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
Latest Articles by Author
-
2024-10-22 09:46:29
-
2024-10-13 13:53:41
-
2024-10-12 12:15:51
-
2024-10-11 22:47:31
-
2024-10-11 19:36:51
-
2024-10-11 15:50:41
-
2024-10-11 15:07:41
-
2024-10-11 14:21:21
-
2024-10-11 12:59:11
-
2024-10-11 12:17:31