php函数

<?php
function write(){
echo "hello the world!";
}
write();
?>

<?php
function writeit($name,$age){
echo "您好".$name."您的的年龄是:".$age;
}
writeit("test",25);
?>

<?php
function add($x,$y){
$sum=$x+$y;
return $sum;
}
echo add(1,2);
?>

 

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

发表评论

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