Heim  >  Artikel  >  Backend-Entwicklung  >  php定义一个参数带有默认值的函数实例分析_PHP教程

php定义一个参数带有默认值的函数实例分析_PHP教程

WBOY
WBOYOriginal
2016-07-13 10:03:43779Durchsuche

php定义一个参数带有默认值的函数实例分析

 这篇文章主要介绍了php定义一个参数带有默认值的函数,实例分析了php参数带有默认值的函数使用技巧,需要的朋友可以参考下

 

 

本文实例分析了php定义一个参数带有默认值的函数用法。分享给大家供大家参考。具体分析如下:

php的函数参数可以指定默认值,指定默认值后,调用时如果不给该参数赋值,则该参数就使用默认值

?

1

2

3

4

5

6

7

8

9

10

11

function capitalize( $str, $each=TRUE ) {

$str = strtolower($str);

if ($each === TRUE) { $str = ucwords ($str);

} else {

$str = strtoupper($str); }

echo ("$str
");

}

capitalize("hEllo WoRld!");

capitalize("hEllo WoRld!",FALSE);

?>

希望本文所述对大家的php程序设计有所帮助。

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/968660.htmlTechArticlephp定义一个参数带有默认值的函数实例分析 这篇文章主要介绍了php定义一个参数带有默认值的函数,实例分析了php参数带有默认值的函数使...
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn