YahooStockQuotes
Yahoo Stock Quotes in PHP, (*1)
, (*2)
, (*3)
, (*4)
What it does
This library makes it simple to access any number of stock prices (and their changes) in your code. It limits itself to one update per day to save your server's (and Yahoo's) resources. It consists of one code file and one cache file. No database necessary., (*5)
Merely pass an array of your desired stocks' symbols to the YahooStockQuotes
constructor and use the three public functions where you need them., (*6)
Simple., (*7)
Requirements
There must be a YahooStockQuotes.json
file in the same directory as the YahooStockQuotes.php
file., (*8)
YahooStockQuotes.json
must be WRITABLE by the user who owns the PHP process (apache, www-data, nginx, hhvm, etc.)., (*9)
If the file does not exist or is not writable, every page view will require a new request to Yahoo's servers, which will slow down all page views drastically and get your server blocked by Yahoo., (*10)
Example usage
<html>
<head>
<title>Stock Test</title>
</head>
<body>
Price: <?php echo $stockQuotes->getPrice('YHOO'); ?>
<br/>
Change: <?php echo $stockQuotes->getChange('YHOO'); ?>
<br/>
Last updated: <?php echo $stockQuotes->getUpdatedDate(); ?>
</body>
</html>
, (*11)