Advertisement
shuvocse

Null Colese Operator

Sep 9th, 2020
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. <?php
  2.  
  3. $default_lat = 23.9;
  4. $default_lon = 90.8;
  5.  
  6. $user_lat = 20.8;
  7.  
  8. // output by the ternary operator
  9.  
  10. //$lat = isset($user_lat) ? $user_lat : $default_lat;
  11.  
  12. // output by null Coalescing operator
  13.  
  14. $lat = $user_lat ?? $default_lat;
  15.  
  16. echo $lat;
  17.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement