我无法找出问题,这是因为我不知道要搜索的正确术语。有人可以命名 PHP 函数的所有部分,如果我遗漏了什么,请添加它。
function my_function(
non_variable $variable_one,
$variable_two = "",
$variable_three ) {
/* inside stuff (Statement?) */
}
我正在寻找的答案看起来像这样
函数:声明
my_function:名称
non_variable:请回答
$variable_one:用 non_variable 填充的变量
我真正需要知道的是non_variable和$variable_one,谢谢!
编辑:有关该功能的更多详细信息
function my_function(custom_name $company) {
$website = $company->company_website;
/* Additional stuff */
}