怎样安装PHP的calendar扩展

2020年1月20日 | 分类: 【技术】

【介绍】

参考:https://www.php.net/manual/zh/ref.imap.php

【安装】

下载 php 源码包并解压:

wget http://php.net/distributions/php-7.3.22.tar.xz && tar -xvf php-7.3.22.tar.xz && cd php-7.3.22

进入 php 源程序目录中的 ext 目录中,这里存放着各个扩展模块的源代码,选择 calendar 模块。

cd ext/calendar && /usr/local/php/bin/phpize && ./configure --with-php-config=/usr/local/php/bin/php-config && make && make install && cd ../../

输出:

Installing shared extensions:     /usr/local/php/lib/php/extensions/no-debug-zts-20180731/

【设置】

在 php.ini 文件中添加:

; [calendar]
extension = "calendar.so"