<?php
//無返回值,無引數
/*function createtable()
$rindex=0;
$row="";
while($rindex<10)
echo "$row";
}//createtable();
//無返回值,有引數
function createtablebynum($colnum,$rownum)
$rindex=0;
$row="";
while($rindex<$rownum)
echo "$row";
}createtablebynum(4,4);
//有返回值,有引數
功能:根據傳入的引數輸出對應的**
引數:整形,列的數量,行的數量
返回值:輸出指定行和列的**字串
function createtablebynumandreturn($colnum,$rownum)
$rindex=0;
$row="";
while($rindex<$rownum)
return "$row";
}*///echo createtablebynumandreturn(8,8);
/* $a=100;
$b=800;
function outputvar()
outputvar();
echo $a."
";function outputvarbyref(&$num)
outputvarbyref($a);
echo $a;
function counts()
for($i=0;$i<3;$i++)
counts();
echo function_exists("opendir");*/
//內部函式
/*function parent()
function sub2()
}parent();
sub1();
sub2();
PHP函式 方法記錄
1 陣列合併 陣列合併一般使用array merage,但是當合併兩個鍵是數字的陣列時,陣列的數字索引將會被重置,有時候會引起不便。想要保留數字鍵值,使用 合併陣列 arr1 13 1166 14 1889 arr2 1 1236 5 1891 arr arr1 arr2 array merge合併...
PHP函式定義方法
在 php 中,允許程式設計者將常用的流程或者變數等元件,組織成乙個固定的格式。也就是說使用者可以自行組合函式或者是類。php 中的函式 function 和 c 語言一樣,包括有返回值?及無返回值?不像 pascal 分成函式 function 和程式 procedure 那麼複雜。在函式的名稱上...
php 常用方法函式
boolin array mixed needle,array haystack bool strict false 在haystack中搜尋needle,如果沒有設定strict則使用寬鬆的比較。stringstrtolower string str strtolower 將字串轉化為小寫 arr...