All pastes #1844328 Raw Edit

function __autoload($ClassName)

public php v1 · immutable
#1844328 ·published 2010-03-18 04:37 UTC
rendered paste body
function __autoload($ClassName){	$ClassFile	= 'class/'.str_replace('_', '/', $ClassName).'.class.php';		if ( ! file_exists($ClassFile))	{		echo "Class $ClassName Not Found!";		die();	}		require_once($ClassFile);}