bl双性强迫侵犯h_国产在线观看人成激情视频_蜜芽188_被诱拐的少孩全彩啪啪漫画

怎么在PHP命令行模式中采集股票趨勢(shì)信息-創(chuàng)新互聯(lián)

怎么在PHP命令行模式中采集股票趨勢(shì)信息?針對(duì)這個(gè)問題,這篇文章詳細(xì)介紹了相對(duì)應(yīng)的分析和解答,希望可以幫助更多想解決這個(gè)問題的小伙伴找到更簡(jiǎn)單易行的方法。

成都創(chuàng)新互聯(lián)公司主營(yíng)碌曲網(wǎng)站建設(shè)的網(wǎng)絡(luò)公司,主營(yíng)網(wǎng)站建設(shè)方案,成都app開發(fā),碌曲h5微信小程序開發(fā)搭建,碌曲網(wǎng)站營(yíng)銷推廣歡迎碌曲等地區(qū)企業(yè)咨詢

主要函數(shù)只有一個(gè)類實(shí)現(xiàn)(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());
 }
 
 //核心,通過正則匹配出 標(biāo)簽名,并將對(duì)應(yīng)的方法的結(jié)果替換掉標(biāo)簽占位符
 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 "-";
  }
 }
 
 //趨勢(shì)的規(guī)則都一樣,合并
 private function qushiPattern($name){
  return '<div class="txt-aside">' . $name . ':</div>\s*<div class="txt-main">([^<]*)</div>';
 }
 
 //支持的標(biāo)簽
 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("短期趨勢(shì)"), $html);
 }
 private function qushimiddle($html){
  return $this -> match($this -> qushiPattern("中期趨勢(shì)"), $html);
 }
 private function qushilong($html){
  return $this -> match($this -> qushiPattern("長(zhǎng)期趨勢(shì)"), $html);
 }
 }
?>

命令提示符中的調(diào)用方法如下(stock.php):

<?php
 
 if(count($argv) >= 2){
 require("stock.class.php");
 $stockId = $argv[1];
 $stock = new StockClass($stockId);
 $temp = $stockId;
 $temp .= " {name}"; //名稱
 $temp .= " {score}"; //評(píng)分
 $temp .= " {tips}"; //描述
 $temp .= " {qushishort}"; //短期趨勢(shì)
 $temp .= " {qushimiddle}"; //中期趨勢(shì)
 $temp .= " {qushilong}"; //長(zhǎng)期趨勢(shì)
 //$temp .= " {zidingyi}"; //自定義,直接在StockClass增加zidingyi方法即可
 $temp .= "\n";
 echo $stock -> getInfo($temp);
 }
?>

直接使用 *\php.exe stock.php股票代碼即可實(shí)現(xiàn)調(diào)用,每次輸入太長(zhǎng)的,可以用批處理簡(jiǎn)化。

將下面的代碼保存為 stock.cmd。

@XXX\php.exe stock.php %1

運(yùn)行結(jié)果:

怎么在PHP命令行模式中采集股票趨勢(shì)信息

這樣就完成了單個(gè)股票趨勢(shì)的采集,如果要采集所有的股票信息,可以保存為批處理文件(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...

雙擊打開即可顯示,如果想保存到文件,可以執(zhí)行batch.cmd > log.txt,然后將結(jié)果復(fù)制到 Execl(或ET)即可進(jìn)行更負(fù)責(zé)的分析。

怎么在PHP命令行模式中采集股票趨勢(shì)信息

關(guān)于怎么在PHP命令行模式中采集股票趨勢(shì)信息問題的解答就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道了解更多相關(guān)知識(shí)。

分享標(biāo)題:怎么在PHP命令行模式中采集股票趨勢(shì)信息-創(chuàng)新互聯(lián)
地址分享:http://vcdvsql.cn/article18/pppdp.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供定制網(wǎng)站企業(yè)建站品牌網(wǎng)站制作軟件開發(fā)App設(shè)計(jì)電子商務(wù)

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)

網(wǎng)站托管運(yùn)營(yíng)