程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> PHP綜合 >> 利用PHP命令行模式采集股票趨勢信息

利用PHP命令行模式采集股票趨勢信息

編輯:PHP綜合

話不多說,下面直接來看實現代碼。

主要函數只有一個類實現(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命令行模式采集股票趨勢信息的全部內容,這個功能很方便實用,感興趣的朋友們快快實踐起來吧。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved