Viewing File: /opt/alt/tests/alt-php83-pecl-stats_2.1.0-1.fac78cf.el8/tests/bug61318-6.phpt

--TEST--
Bug #61318 (stats_stat_percentile also casts values to floats)
--FILE--
<?php
$data = array(1, 2, 3);
stats_stat_percentile($data, 50);
var_dump($data);
?>
--EXPECTF--
array(3) {
  [0]=>
  int(1)
  [1]=>
  int(2)
  [2]=>
  int(3)
}
Back to Directory File Manager
<