I have a PHP 7.4 project featuring some statistical analysis using pecl-math-stats.
Since PHP 7.4 is end-of-life, I need to update to PHP8. On the extensions page of php.net this statistics package is mentioned without any notice of deprecation or other difficulties.
When i update the PHP to version 8, it turns that pecl-math-stats is incompatible with php8.
On the pecl site is stated that “This package is not maintained, if you would like to take over please go to this page.”
So i looked for other packages and found https://github.com/markrogoyski/math-php.
Does anyone have experience with it?
I want to replace stats_cdf_normal for calculating the cumulative distribution function.
When i use MathPHPProbabilityDistributionContinuous Normal, do I get equal results with the cdf function?