实例化类

<?php
//MyClass.php文件
class MyClass{
function Weather($str){
return "现在天气为:".$str;
}
}?>

 

 

<?php
//index2.php
require("MyClass.php");
$class=new MyClass();
echo $class->Weather("多云");
?>

 

posted @ 2015-10-10 10:15  清风翠竹茶飘香  阅读(120)  评论(0编辑  收藏  举报