PHP Arrays for Scientific Computing powered by C
PHPSci CArray is a high-performance scientific computing library for PHP developed in C and based on the original NumPy code. CArrays offer a solid alternative to PHP arrays as well as compatibility with codes developed using NumPy.
It’s really easy to compile this extension using Linux environments.
$ add-apt-repository -y ppa:ondrej/php
$ apt-get update
$ apt-get install libblas-dev libatlas-base-dev php7.2-dev
$ phpize
$ ./configure
$ make test
$ make install
$ add-apt-repository -y ppa:ondrej/php
$ apt-get update
$ apt-get install libopenblas-dev liblapacke-dev php7.2-dev
$ phpize
$ ./configure
$ make test
$ make install
Don’t forget to check if the extension is enabled in your php.ini file.
Apache/NGINX Users: Don’t forget to restart your services.