我創建到的代碼輸出某些行的功能,這取決於從函數的第一個參數的複式,例如這是迄今爲止的功能:功能的一個參數
function custom_func($info) {
if (is_numeric($info)) {
$array = array('<tag1>', '<tag2>', '<tag3>');
echo $array[$info]'
';
}
不過,我想要能輸入多$信息輸入,例如目前:
custom_func(0);
回報<tag1>
我想:
custom_func(0 1);
返回<tag1> <tag2>
這可能嗎?
呼叫它像'custom_func(陣列(1,2,3));'信息然後包含一個數組。 – Daan
make $ info一個數組,併爲每個鍵生成您的標籤 – lauw
Php支持具有可變數量參數的函數http://php.net/manual/en/functions.arguments.php#functions.variable-arg-list –