php自定义函数怎么编写?
php自定义函数怎么编写?我对php自定义函数不大理解。解释下,我要详细的。
php自定义函数怎么编写?我对php自定义函数不大理解。解释下,我要详细的。
答案:function 函数名(参数){//代码实现的功能
return "返回内容";
}
function htmtocode($content) {
$content = str_replace("\n", "<br>", str_replace(" ", " ", $content));
return $content;
}
function 函数名(参数) { //具体代码 return反回的是什么}