Skip to content

Instantly share code, notes, and snippets.

@Kowalski7
Created August 23, 2022 12:14
Show Gist options
  • Save Kowalski7/bb82d9090746dd86b9af8bcb3bf44ef1 to your computer and use it in GitHub Desktop.
Save Kowalski7/bb82d9090746dd86b9af8bcb3bf44ef1 to your computer and use it in GitHub Desktop.
Various PHP utilities
<?php
spl_autoload_register('myAutoLoader');
function myAutoLoader($className) {
// Configure path and extension to reflect your project structure
$path = "classes/";
$ext = ".php";
$fullPath = $path . $className . $ext;
if(!file_exists($fullPath)) {
return false;
}
include_once $fullPath;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment