더 이상 고민하지 않고 구현 코드를 직접 살펴보겠습니다.
주 함수에는 클래스 구현이 하나만 있습니다(stock.class.php):
<?php class StockClass{ public $stockId; public function __construct($stockId){ $this -> stockId = $stockId; } private function getUrl(){ return "http://stockpage.10jqka.com.cn/" . $this -> stockId . "/"; } private function getPage(){ return file_get_contents($this -> getUrl()); } //核心,通过正则匹配出 标签名,并将对应的方法的结果替换掉标签占位符 public function getInfo($template){ $html = $this -> getPage(); if( preg_match_all("/\{([^\}]*)\}/", $template, $result) ){ foreach($result[1] as $index => $fun){ $template = str_replace($result[0][$index], $this -> $fun($html), $template); } } return mb_convert_encoding($template, "GBK", "UTF-8"); //Windows的命令提示符编码是GBK } private function match($pattern, $html, $itemIndex = 1){ $pattern = '/' . str_replace('/', '\/', $pattern) . '/'; if( preg_match($pattern, $html, $result) ){ return $result[$itemIndex]; }else{ return "-"; } } //趋势的规则都一样,合并 private function qushiPattern($name){ return '<div class="txt-aside">' . $name . ':</div>\s*<div class="txt-main">([^<]*)</div>'; } //支持的标签 private function name($html){ return $this -> match("<title>([^\(<]*)\(", $html, 1); } private function score($html){ return $this -> match('<span class="analyze-num">(\d+(\.\d+)?)</span>', $html); } private function tips($html){ return $this -> match('<span class="analyze-tips">([^<]*)</span>', $html); } private function qushishort($html){ return $this -> match($this -> qushiPattern("短期趋势"), $html); } private function qushimiddle($html){ return $this -> match($this -> qushiPattern("中期趋势"), $html); } private function qushilong($html){ return $this -> match($this -> qushiPattern("长期趋势"), $html); } } ?>
명령 프롬프트에서의 호출 방법은 다음과 같습니다(stock.php).
<?php if(count($argv) >= 2){ require("stock.class.php"); $stockId = $argv[1]; $stock = new StockClass($stockId); $temp = $stockId; $temp .= " {name}"; //名称 $temp .= " {score}"; //评分 $temp .= " {tips}"; //描述 $temp .= " {qushishort}"; //短期趋势 $temp .= " {qushimiddle}"; //中期趋势 $temp .= " {qushilong}"; //长期趋势 //$temp .= " {zidingyi}"; //自定义,直接在StockClass增加zidingyi方法即可 $temp .= "\n"; echo $stock -> getInfo($temp); } ?>
*php.exe stock.php
스톡 코드를 직접 사용하여 호출을 구현할 수 있습니다. 매번 입력이 너무 길면 일괄 처리를 사용하여 단순화할 수 있습니다.
아래 코드를 stock.cmd로 저장하세요.
@XXX\php.exe stock.php %1
실행 결과:
이렇게 하면 개별 주식 동향 수집이 완료됩니다. 모든 주식 정보를 수집하고 싶다면 배치 파일(batch.cmd)로 저장하면 됩니다
@echo off call stock 000001 call stock 000002 call stock 000003 call stock 000004 call stock 000005 call stock 000006 call stock 000007 call stock 股票代码n...
더블클릭하여 열어서 표시하시면 batch.cmd > log.txt
을 실행하신 후 결과를 Execl(또는 ET)에 복사하시면 보다 책임감 있는 분석이 가능합니다.
위 내용은 PHP 명령줄 모드를 사용하여 주식 동향 정보를 수집하는 전체 내용입니다. 이 기능은 관심 있는 친구들이 빠르게 연습할 수 있을 만큼 매우 편리하고 실용적입니다.