php筆記--函數(1)

來源:互聯網
上載者:User

標籤:預設   for   let   margin   沒有   color   nbsp   func   san   

1.使用 function 開頭;

2.函數名可以用字母或底線開頭 ;

3.函數體必須在大括弧內;

 

 1 <?php 2  3 function a_b() { 4  5     echo "hello!!"; 6  7 } 8  9 a_b();10 11 ?>

 

4.php的函數可以沒有參數,也可以有多個參數,若是出現多個參數要用逗號隔開;

5.參數類似一個變數,要以 $ 開頭; 

 
1 <?php2 3 function a_b($a,$b) {4     echo $a+$b;5 }6 7 a_b(1,2);8 9 ?>

 

 6.return 關鍵字可以使函數傳回值;

 

<?phpfunction a_b($a,$b) {    return $a+$b;}$h_b = a_b(1,2);echo $h_b;?>

 

7.函數不能返回多個值; 

 

8.內建函數是php自身預設所支援的函數;


9.在php中用 function_exists  來判斷函數是否存在;
 

 1 <?php 2  3 function a_b() { 4     echo "hello"; 5 } 6  7 if (function_exists(‘a_b‘)) { 8      9     echo ‘yes‘;10 }11 12 ?>

 

10.頁面在載入時函數不會立即執行;


11.函數只有在被調用是才會執行;

 

php筆記--函數(1)

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.