All pastes #1844325 Raw Edit

__autoload($ClassName)

public php v1 · immutable
#1844325 ·published 2010-03-18 04:35 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);}