如何安装php-sqlite扩展组件
3 回答
汪汪一只猫
TA贡献1898条经验 获得超8个赞
源代码安装.
下载sqlite-1.03版本
tar zxcf sqlite-1.03.tar.gz
cd sqlite-1.03
phpize
./configure --with-php-config=/usr/bin/php-config
make
在命令make中,程序报错,make: *** [sqlite3.lo] Error 1,网上查是版本不兼容,只能选第一个方法,因为centos6以上.php默认是5.3.3版本,到网上找了很久才找到5.3.3版本,总算安装成功.
tar zxvf php-5.3.3.tar.gz
cd php-5.3.3/ext
phpize
./configure --with-php-config=/usr/bin/php-config
make && make install
叮当猫咪
TA贡献1776条经验 获得超12个赞
void InitList(SqList *L){
L -> elem = (ElemType *)malloc(MAXSIZE * sizeof(ElemType));
if(!L -> elem)exit(ERROR);
L -> length = 0;
L -> listsize = MAXSIZE;
}
- 3 回答
- 0 关注
- 567 浏览
添加回答
举报
0/150
提交
取消