The following code doesn’t print out anything: $bool_val = (bool)false; echo $bool_val; But the following code prints 1: $bool_val = (bool)true; echo $bool_val; ...
-
May 31, 2022
- 0 Comments