PHP自学计划-函数-15

函数声明结构:

// 普通函数
function 函数名(){
}
// 代参函数
function 函数名(参数){
}
// 普通函数(带返回值)
function 函数名(){
    return 返回值
}
// 代参函数(带返回值)
function 函数名(参数){
    return 返回值
}

举例

echo add(12,21);

show();
showSth("hello");

function show(){
    echo "hi";
}

function showSth($sth)
{
    echo $sth;
}

function add($num1, $num2)
{
    return $num1 + $num2;
}

你可能感兴趣的:(PHP自学计划-函数-15)