即使使用 PHP 多年
你可能已經知道
以下為引用的內容
// function with
function foo($arg
echo "arg
echo "arg
}
foo(
/* prints:
arg
arg
*/
foo();
/* prints:
arg
arg
*/
現在讓我們看看如何建立能夠接受任何參數數目的函數
以下為引用的內容
// yes
function foo() {
// returns an array of all passed arguments
$args = func_get_args();
foreach ($args as $k => $v) {
echo "arg"
}
}
foo();
/* prints nothing */
foo(
/* prints
arg
*/
foo(
/* prints
arg
arg
arg
*/
許多 PHP 函數具有長描述性的名稱
以下為引用的內容
// get all php files
$files = glob(
print_r($files);
/* output looks like:
Array
(
[
[
[
[
)
*/
你可以像這樣獲得多個文件
以下為引用的內容
// get all php files AND txt files
$files = glob(
print_r($files);
/* output looks like:
Array
(
[
[
[
[
[
[
)
*/
From:http://tw.wingwit.com/Article/program/PHP/201311/21182.html