Can the setcookie function only use strings for assignment?
Is there no way to use an array to assign a value to setcookie in the mycookie method in the code below? ?
$cookie_name, 'value' => $cookie_value, 'expire' => $cookie_expire, 'path' => $cookie_path, 'domain' => $cookie_domain, 'secure' => $cookie_secure, 'httponly' => $cookie_httponly, ); //查看数组情况 foreach ($MyConfig['Cookie'] as $item => $value) { var_dump($item . var_dump($value)); echo '
'; } //最终给COOKIE赋值 function mycookie() { setcookie( $MyConfig['Cookie']['name'], $MyConfig['Cookie']['value'],); //**这一行如何才能使用数组进行赋值** } ?>
Thanks for telling me a method.
If the PHP version is 5.6 or later, and ensure that the subscript order of $Myconfig['Cookie'] is consistent with the parameter order of setcookie, it can be written as
setcookie(...$Myconfig['Cookie'])
See PHP manual: Parameter expansion using... operator