Skip to content

Instantly share code, notes, and snippets.

@bzz0217
Last active May 3, 2016 03:09
Show Gist options
  • Save bzz0217/ea2686e374549df9e6f3afda811793ab to your computer and use it in GitHub Desktop.
Save bzz0217/ea2686e374549df9e6f3afda811793ab to your computer and use it in GitHub Desktop.
<?php
header("Content-Type: text/html; charset=UTF-8");
require_once 'get_csv.php';
$filepath = "./euc.csv";
$from_encoding = "EUC";
$gc = new get_csv($filepath, $from_encoding);
$csv = $gc->csv_array_convert();
echo "<pre>";
print_r($csv);
echo "</pre>";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment