2022-10-03, 05:17:40
@Knobbles, @islander , ...
If you want to stay compatible with PHP < 7, I suggest you use the ternary operator instead of the null coalescing operator, e.g.:
instead of
If you want to stay compatible with PHP < 7, I suggest you use the ternary operator instead of the null coalescing operator, e.g.:
Code:
isset($cookie_domain)?$cookie_domain:''
Code:
$cookie_domain ??""