victorwesterlund.com/src/Globals.php
2021-10-25 09:56:01 +02:00

14 lines
No EOL
260 B
PHP

<?php
class Import {
public static function file($file) {
$content = file_get_contents($file);
return $content;
}
public static function json($file) {
$contents = Import::file($file);
$json = json_decode($contents);
return $json;
}
}