Thread Rating:
  • 4 Vote(s) - 5 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Get simple 3.3.16 support for php 8.0
#23
@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.:

Code:
isset($cookie_domain)?$cookie_domain:''
instead of
Code:
$cookie_domain ??""
Reply


Messages In This Thread
RE: Get simple 3.3.16 support for php 8.0 - by Carlos - 2022-10-03, 05:17:40



Users browsing this thread: 2 Guest(s)