摘要: 一路编译安装LAMP以来出现了好多好多问题,Linux(Ubuntu),MySQL,Apache都正常安装了,而在安装PHP之前,安装GD库时又出现了一个问题,不过还好解决了,下面是报错信息gd_png.c:16:53: error: png.h: No such file or directorygd_png.c:47: error: expected specifier-qualifier-list before ‘jmp_buf’gd_png.c:54: error: expected ‘)’ before ‘png_ptr’gd_png.c:82: error: expected ‘) 阅读全文
posted @ 2013-05-16 23:50 幻星宇 阅读(749) 评论(0) 推荐(0) 编辑
摘要: $a = '';echo '1.-----------'.($a == '').'<br>';echo '2.-----------'.($a == null).'<br>';echo '3.-----------'.($a == false).'<br>';echo '4.-----------'.($a == '0').'<br>';echo '5.------ 阅读全文
posted @ 2013-05-16 13:47 幻星宇 阅读(287) 评论(0) 推荐(0) 编辑
摘要: $a = '';echo '1.---------------'.empty($a).'<br>';$a = '0';echo '2.---------------'.empty($a).'<br>';$a = 0;echo '3.---------------'.empty($a).'<br>';$a = null;echo '4.---------------'.empty($a).'<br> 阅读全文
posted @ 2013-05-16 11:41 幻星宇 阅读(245) 评论(0) 推荐(0) 编辑