php类

<?php
header("Content-Type:text/html;charset=gb2312");
class HelloWorld
{

function sayHello()
{
return "Hello World!";
}
function add($x,$y){
$sum=$x+$y;
echo $sum;
  }

}

$hello=new HelloWorld;
echo $hello->sayHello();
$hello->add(2,3);
?>

    A+
发布日期:2009年02月23日  所属分类:未分类

发表评论

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: