php入门学习知识点七 PHP函数的基本应用
复制代码 代码如下:
/*
* 简单的函数
*/
function fontBold($con){
return "$con";
}
$str="简单的函数测试!";
echo "普通文本:$str
";
echo "加粗文本:".fontBold($str)."";
/*
* 带可选参数的函数
*/
function fontColor($con,$color="bule"){
return "$con";
}
$str="颜色测试";
echo $str;
echo fontColor($str."这是不带颜色参数的(默认为蓝色)!");
echo fontColor($str,"red"."这是带颜色参数的(默认为红色!)");
/*
* 递归函数
*/
function chckint($Num){
if($Num>1){
return chckint($Num-1);
}else if($Numreturn chckint(($Num*-1)-1);
}else{
if($Num>0 && $Numreturn false;
}else if($Num){
return true;
}
}
}
$Num=3;
if(chckint($Num)){
echo $Num."是整数!";
}else{
echo $Num."不是整数";
}
/*
*动态调用函数
*/
function write($con){
echo "$con";
}
function writeBold($con){
echo "$con";
}
$myFupnction="write";
$myFupnction("这是动态调用函数不加粗的例子!");
$myFupnction="writeBold";
$myFupnction("这是动态调用加粗的例子!")
?>

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

SublimeText3 Linux new version
SublimeText3 Linux latest version

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.
