<?php$mysqli = new mysqli("localhost", "root", "toor", "khfinance");if ($mysqli->connect_errno) {print("Failed to connect to MySQL: " . $mysqli->connect_error);}$query = "SELECT * FROM khf_symbols";if ($result = $mysqli->query($query)) {while ($row = $result->fetch_assoc()) {$filename = "http://download.finance.yahoo.com/d/quotes.csv?s=" . $row["c_symbol"] . "&f=sl1d1t1c1ohgv&e=.csv";$delimeter = ",";if (($handle = fopen($filename, "r")) !== FALSE) {print($filename . "\n");//while (!feof($handle)) {// $readline = fgets($handle, 1000);// print "Data: " . $readline;//}while (($content = fgetcsv($handle, 1000, $delimeter)) !== FALSE) {$td = explode("/", $content[2]);$tde = $td[2] . "-" . $td[0] . "-" . $td[1];$set = function($c) {return ($c === "N/A" || $c === "n/a") ? 0, $c;}if (($stmt = $mysqli->prepare("INSERT INTO khf_updated_quotes (s_opening_price, s_closing_price, s_highest_price, s_lowest_price, s_volume_share, s_transact_date) VALUES (?, ?, ?, ?, ?, ?)"))) {if (!$stmt->bind_param("ddddis",$content[5],$content[1],$content[6],$content[7],$content[8],$tde)) {print("Binding failed: " . $stmt->error);}if (!$stmt->execute()) {print("Execute failed: " . $stmt->error);}}print_r($content);}fclose($handle);}}$result->free();}$mysqli->close();?>
0 comments:
Post a Comment