2013年12月31日 星期二
Big Endian vs Little Endian
Data stores in memory split in Bytes
Big Endian stores Most significant byte First
2013年12月2日 星期一
PHP uninitialized variable evaluation
php > $user;
php > print var_dump(!$user);
PHP Notice: Undefined variable: user in php shell code on line 1
bool(true)
php > print var_dump($user);
PHP Notice: Undefined variable: user in php shell code on line 1
NULL
php > print var_dump(empty($user));
bool(true)
uninialized variable evaluates to NULL (with notice)
!$var evaluates to True
empty($var) evaluates to True
empty($var) evaluates to True
訂閱:
文章 (Atom)