forked from dbierer/php7cookbook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcreate_currency_table_db.php
29 lines (24 loc) · 1.05 KB
/
create_currency_table_db.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?php
define('CURRENCY_CSV', __DIR__ . '/source/data/files/currencies.csv');
define('DB_CONFIG_FILE', '/source/config/db.config.php');
// setup class autoloading
require __DIR__ . '/source/Application/Autoload/Loader.php';
// add current directory to the path
Application\Autoload\Loader::init(__DIR__ . '/source');
// classes to use
use Application\Database\Connection;
$connection = new Connection(include __DIR__ . DB_CONFIG_FILE);
$pdo = $connection->pdo;
$fileObj = new SplFileObject(CURRENCY_CSV, 'r');
$stmt = $pdo->prepare('SELECT * FROM iso_country_codes WHERE name LIKE ?');
$stmt2 = $pdo->prepare('UPDATE iso_country_codes SET currency_name = ?, currency_code = ?, currency_number = ? WHERE iso2 = ?');
while ($csvRow = $fileObj->fgetcsv()) {
$search = ucwords(strtolower(substr($csvRow[0], 0, 12))) . '%';
echo $search . PHP_EOL;
$stmt->execute([$search]);
$dbRow = $stmt->fetch(PDO::FETCH_ASSOC);
if ($dbRow) {
$stmt2->execute([$csvRow[1], $csvRow[2], $csvRow[3], $dbRow['iso2']]);
}
}
echo serialize($currencyTable);