This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Copyright Simon Briggs 2016 | |
// Licensed under the Gnu Lesser General Public License | |
// https://www.gnu.org/licenses/lgpl.txt | |
// Get pricing data from Amazon | |
// (For better performance get the data and cache it with a cron job) | |
$data = file_get_contents("https://spot-price.s3.amazonaws.com/spot.js"); | |
// Trim off the JSONP function to give us propert JSON | |
$data = substr($data, 9, strlen($data)-10); |