in my main module folder a have Somethink.php file with this content:
Code: Select all
<?php
class Somethinkg {
public function __construct() {
echo "Somethink";
}
}
Code: Select all
<?php
function __autoload($classname) {
require_once $classname . '.php';
}
$var = new Something();