numbers.php-master数字PHP库
<?php require_once(__DIR__ . '/../vendor/autoload.php'); // Let's consider some really basic examples. echo '<pre>'; // Adding up elements in an array. But wait! First we need an array... // Let's get a random sample of 50 values, in the range 0, 100. $random = NumbersPHP\Statistic::randomSample(0, 100, 50); echo 'Random = {' . implode(', ', $random) . "}\n"; // Add them up... $sum = NumbersPHP\Basic::sum($random); echo 'Sum of Random = ' . $sum . "\n"; // We can do some other cool stuff as well. Like find the GCD between // two integers. $gcd = NumbersPHP\Basic::gcd(100, 10); echo 'GCD amongst 100 and 10 = ' . $gcd; echo '</pre>';
如果你需要处理很多条数字数据,那么你一定能用得到本库。
免责声明
本站所有资源均由网友贡献或各大下载网站转载。请自行检查软件的完整性!本站所有资源仅供学习参考。请不要将它们用于商业目的。否则,一切后果由您负责!如有侵权,请联系我们删除。联系方式:admin@php.cn
相关文章
如何修复 PHP 显示数据库值时的'数组到字符串转换”错误?
27 Oct 2024
PHP 中的数组到字符串转换当尝试选择数据库值并使用 PHP 的 SELECT 语句显示它时,您可能会遇到一个常见错误...
Hot Tools
热门文章
崩坏:星穹铁道 - 所有金色替罪羊谜题解决方案
18 Jan 2025
手游攻略
印第安纳琼斯与大圈:高棉齿轮位置指南
27 Dec 2024
手游攻略
Tales Of Graces F 重制版:所有锁定的宝箱密码
18 Jan 2025
手游攻略
决斗勇士 2024 年 12 月代码
25 Dec 2024
手游攻略
如何在SQL中随机选择行?
17 Jan 2025
mysql教程