我在 google 和 SO 上找不到我的问题。希望,我可以解释给你。
当您查看以下功能时,您会明白:
function get_page($identity)
{
if($identity is id)
$page = $this->get_page_from_model_by_id($identity);
elseif($identity is alias)
$page = $this->get_page_from_model_by_alias($identity);
}
我使用的功能:
get_page(5); // with id
or
get_page('about-us'); // with alias
or
get_page(5, 'about-us'); // with both
我想将参数发送到函数id
或alias
. 它应该只有一个标识符。
我不想喜欢function get_page($id, $alias)
我怎样才能得到和知道只有一个参数类型variable
。有什么功能或可能吗?