。PHP中无参数方法的用法。" />

PHP中无参数方法的用法

【PHP中无参数方法的用法】

//使用function关键字定义方法
function num(){
echo "Hello";
}

//调用该方法
num();

?>

    推荐阅读