我正在建立一个股票分析网站,以使用股票信息,如价格历史等。一旦我获得数据,我将实现一些自己的算法,但我在获取历史数据时遇到麻烦。网站免费托管biz.nf的网络托管包含的connect.php文件包含所有需要的sql信息并连接到数据库。我有错误检查,所以我知道这不是问题。我还试图手动复制/粘贴链接,它们工作正常,我正在创建URL。我在这个网站和其他网站上看到了一些类似的主题,但我没有看到一个明确的解决方案如何解决它或明确的原因。雅虎阻止了我吗? 另外,我想提一下我对php编程很新,但我有很多C和C ++背景,所以如果可以的话,请在提供任何帮助时考虑一下。 提前谢谢!
这是我执行的index.php文件的代码
代码:
<html>
<head>
<title>StockGrader</title>
</head>
<body bgcolor="green" text="black" link="red">
<div id="header">
<hr>
<h1>Welcome To <b><i>StockGrader</b></i><h1/></hr>
<?php
include("phpINCLUDES/connect.php");
//function that creates a url from which to download data
function createURL($ticker)
{ $currentMonth = date("n") - 1; //"n" current month as a 1-digit number
$currentDay = date("j"); //"j" current day as a 1-digit number
$currentYear = date("Y"); //"Y" current year as a 4-digit number
echo "current URL is http://ichart.finance.yahoo.com/table.csv?s=$ticker&d=$currentMonth&e=$currentDay&f=$currentYear&g=d&a=3&b=10&c=2013&ignore=.csv";
echo "\n\n\n";
return "http://ichart.finance.yahoo.com/table.csv?s=$ticker&d=$currentMonth&e=$currentDay&f=$currentYear&g=d&a=3&b=10&c=2013&ignore=.csv";
}
//function to download data from a url and store into a file
function getCSVFile($URL, $outputFile)
{
**$content = file_get_contents($URL);** //goes to the file located at this link and downloads the full file contents as a string of data
//replace a string which is the first parameter with the string in the second parameter. the string being replaced is in the third parameter
$content = str_replace("Date,Open,High,Low,Close,Volume,Adj Close","", $content);
//removes all white space
$content = trim($content);
//write a string into a file
file_put_contents($outputFile, $content);
}
function fileToDatabase($txtFile, $tableName)
{
$file = fopen($txtFile, "r");
while(!feof($file))
{
$line = fgets($file);
//separates a string
$pieces = explode(",", $line);
//stock variables
$date = $pieces[0];
$open = $pieces[1];
$high = $pieces[2];
$low = $pieces[3];
$close = $pieces[4];
$volume = $pieces[5];
// $adjclose = $pieces[6]; WE ARE NOT GOING TO USE THIS ONE USUALLY
$amount_change = $close - $open;
if($open!=0)
{ $percent_change = ($amount_change/$open)*100; }
else $percent_change = 99999;
//check if table exists or not
$sql = "SELECT * FROM $tableName";
$result = mysql_query($sql);
//if table doesn't exist
if(!$result)
{
$sql_2 = "CREATE TABLE $tableName (date DATE , PRIMARY KEY(date), open FLOAT, high FLOAT, low FLOAT, close FLOAT, volume INT, amount_change FLOAT, percent_change FLOAT)";
mysql_query($sql_2);
}
//insert into table
$sql_3 = "INSERT INTO $tableName(date, open, high, low, close, volume, amount_change, percent_change) VALUES ('$date','$open','$high','$low','$close','$volume','$amount_change','$percent_change')";
mysql_query(sql_3);
}
fclose($file);
}
function main()
{
//i don't have this file yet
$mainTickerFile = fopen("tickerMaster.txt","r");
while(!feof($mainTickerFile))
{
$companyTicker = fgets($mainTickerFile);
$companyTicker = trim($companyTicker); //trim whitespace just in case
$fileURL = createURL($companyTicker); //create url for each stock ticker
//create a directory path to each file for each ticker
$companyTxtFile = "txtFiles/".$companyTicker.".txt"; //I NEED TO CREATE THIS FOLDER ON MY SERVER
getCSVFile($fileURL, $companyTxtFile);
fileToDatabase($companyTxtFile, $companyTicker);
}
}
main();
?>
<p><a href="secondpage.html">Run Script</a></p>
</div>
</body>
</html>
这是我得到的错误:
[function.file-get-contents]: failed to open stream: Connection refused in /srv/disk12/1368341/www/nemanja.co.nf/index.php on line 26
我用粗体(每边两个星号)制作了错误发生的地方。
此外,托管网站的服务器上有allow_url_fopen = 1 如果是这样的情况,yahoo.com阻止了我有没有办法绕过这个? 是否有其他方法可以获取所有历史股票数据?
答案 0 :(得分:1)
您确定共享主机允许连接到远程网址 - 不太可能
大多数共享主机都不会在php.ini
中将allow_url_fopen设置为true也许尝试使用curl