假设我在“config/custom.php”中有以下数组
return array(
'svn_host' => "https://MYSERVERNAME",
'svn_user' => "deployment",
);
现在假设我添加了另一个值,但我想重用同一个数组中的现有值。
return array(
'svn_host' => "https://MYSERVERNAME",
'svn_user' => "deployment",
'cmd' => "svn ls --username [I want to use 'svn_user' here]"
);