📜  php 命名参数 - PHP 代码示例

📅  最后修改于: 2022-03-11 14:54:17.192000             🧑  作者: Mango

代码示例1
// positional
function_name(0, 100, 50);
// named
function_name(start_index: 0, num: 100, value: 50);
// The order does not matter.
function_name(value: 50, num: 100, start_index: 0);