May 2017
Intermediate to advanced
340 pages
8h 16m
English
The library comes up with different options for installations. The easiest one is to get it from PECL (a repository for PHP Extensions):
pecl install ds
We can also download the source code and compile the library if we want. In order to do that, we just need to get the code from the GitHub repository and follow the git commands:
clone https://github.com/php-ds/extension "php-ds"cd php-ds# Build and install the extensionphpize./configuremakemake install# Clean up the build filesmake cleanphpize --clean
If there is any dependency issue, we have to install this package as well:
sudo apt-get install git build-essential php7.0-dev
For Windows, the DLL is available to download from PECL site. For Mac OS users, Homebrew has support ...
Read now
Unlock full access