개발관련/PHP

[PHP]Class Example

파노카페 2012. 4. 20. 15:13
";
//}

if(class_exists("Person")) {
	echo "That class has been defined.
"; } else { echo "Class not defined!
"; } ?>

That class has been defined.