安装

安装扩展的最简单方法是通过 » PECL

pecl install ds

您也可以直接从源代码构建

# Dependencies you might need to install
# sudo apt-get install git build-essential php7.0-dev

git clone https://github.com/php-ds/extension "php-ds"
cd php-ds

# Build and install the extension
phpize
./configure
make
make install

# Clean up the build files
make clean
phpize --clean

如果您使用的是 Windows,您可以 » 在 PECL 上下载编译后的 .dll

注意:

如果您使用的是 Composer,强烈建议您在项目中包含 » php-ds/php-ds,以便您的代码在未安装扩展的环境中仍然可以正常工作。如果安装了扩展,它将优先使用。

添加注释

用户贡献的注释 3 个注释

3
yyb8 at vip dot qq dot com
7 年前
注意:请在 json 扩展之后加载此扩展,否则无法加载此扩展。
0
og at crossmediapool dot at
9 个月前
在 Debian 和 Ubuntu 上,也可以通过 APT 系统获得
例如:apt install php8.1-ds
0
sirolad at yahoo dot com
7 年前
您可以在 macOS 上使用 brew install homebrew/php/php71-ds 进行安装
To Top