PHP學習之[第05講]PHP5.4 循環結構、系統函數和自定義函數

1、while/for/break/continue:php

while (expr){
statements
}

  

for (expr1;expr2;expr3){
statement
}

break n  跳出循環或條件後將結束該循環體的操做函數

continue 跳出循環或條件後將繼續該循環體的操做spa

2、系統函數和自定義函數:orm

string date ( string format [, int timestamp])blog

自定義函數遞歸

格式:string

function funname(arg1arg2arg3……){io

statementfunction

return valuesform

}

遞歸函數

function fun1($n){

  if($n==1){

  return 1;

  }else{

  return $n*fun1($n-1);

  }

  }

相關文章
相關標籤/搜索