php 利用命令列模式擷取股票趨勢資訊實例代碼

怪我咯
發布: 2023-03-13 20:32:01
原創
2412 人瀏覽過

股票資訊我們做理財網站都只有採集入口站的資料不可能自己產生股票資訊了,這個就會要用到抓取股票站的資料了,下面我們來看一篇關於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 = &#39;/&#39; . str_replace(&#39;/&#39;, &#39;\/&#39;, $pattern) . &#39;/&#39;;
  if( preg_match($pattern, $html, $result) ){
  return $result[$itemIndex];
  }else{
  return "-";
  }
 }
 
 //趋势的规则都一样,合并
 private function qushiPattern($name){
  return &#39;<p class="txt-aside">&#39; . $name . &#39;:</p>\s*<p class="txt-main">([^<]*)</p>&#39;;
 }
 
 //支持的标签
 private function name($html){
  return $this -> match("<title>([^\(<]*)\(", $html, 1);
 }
 private function score($html){
  return $this -> match(&#39;<span class="analyze-num">(\d+(\.\d+)?)</span>&#39;, $html);
 }
 private function tips($html){
  return $this -> match(&#39;<span class="analyze-tips">([^<]*)</span>&#39;, $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 &gt ; log.txt,然後將結果複製到Execl(或ET)即可進行更負責的分析。

以上是php 利用命令列模式擷取股票趨勢資訊實例代碼的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板