Posted by albert | Posted in PHP, Request | Posted on 16-11-2009
0
A simple rule is, “Always use `0′ or `NULL’ for null pointers, and always cast them when they are used as arguments in function calls.”
VN:F [1.9.3_1094]
Rating: 0.0/10 (0 votes cast)
VN:F [1.9.3_1094]
Posted by albert | Posted in PHP, Request | Posted on 16-11-2009
0
The fact that null pointers are represented both in source code, and internally to most machines, as zero invites unwarranted assumptions. The use of a preprocessor macro (NULL) suggests that the value might change later, or on some weird machine.
VN:F [1.9.3_1094]
Rating: 0.0/10 (0 votes cast)
VN:F [1.9.3_1094]
Posted by albert | Posted in PHP, Request | Posted on 16-11-2009
0
A “null pointer” is a language concept whose particular internal value does not matter. A null pointer is requested in source code with the character “0″. “NULL” is a preprocessor macro, which is always #defined as 0 (or (void *)0).
VN:F [1.9.3_1094]
Rating: 0.0/10 (0 votes cast)
VN:F [1.9.3_1094]