程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> php指定函數參數默認值示例代碼

php指定函數參數默認值示例代碼

編輯:關於PHP編程

例1

復制代碼 代碼如下:
<html>
<head>
<title>php函數指定默認值-www.jbxue.com</title>
</head>
<body>
<?php
function printMe($param = NULL)
{
   print $param;
}
printMe("This is test");
printMe();
?>

</body>
</html>

輸出結果:
This is test

例2 php函數參數默認值的使用范例,php函數參數中設置和使用默認值。

復制代碼 代碼如下:
<html>
  <head>
  <title>php函數參數默認值 - www.jbxue.com</title>
  </head>
  <body>
  <?php
  function textonweb ($content, $fontsize=3){
     echo "<font SIZE=$fontsize>$content</font>";
  }
  textonweb ("A <br />", 7);
  textonweb ("AA.<br />");
  textonweb ("AAA. <br />");
  textonweb ("AAAA! <br />");
  ?>
  </body>
  </html>

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved