Login   Register  
PHP Classes
elePHPant
Icontem

File: example.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Kai Ming Choi  >  Array Class  >  example.php  >  Download  
File: example.php
Role: Example script
Content type: text/plain
Description: example
Class: Array Class
Manipulate numeric array values
Author: By
Last change: update to 0.2
Date: 2010-07-23 06:35
Size: 1,416 bytes
 

Contents

Class file image Download
<pre><?php
//Array Class Example
include "array.class.php";
$ArrayClass = new ArrayClass();

$numbers = array(1,1,1,2,2,2,2,2,3,4,5,6,7,8,9,5,4,3);

echo 
"\n MAX:";
var_dump($ArrayClass->array_max($numbers));    //get the max. value of an array

echo "\n MIN:";
var_dump($ArrayClass->array_min($numbers));    //get the min. value of an array

echo "\n SUM:";
var_dump($ArrayClass->array_sum($numbers));    //get the sum of an array

echo "\n AVG:";
var_dump($ArrayClass->array_avg($numbers));    //get the avg. value of an array

echo "\n MODE:";
var_dump($ArrayClass->array_mode($numbers));    //get the mode value of an array

echo "\n FIRST QUARTILE:";
var_dump($ArrayClass->array_firstQuartile($numbers));    //get the first quartile of an array

echo "\n MEDIAN/SECOND QUARTILE:";
var_dump($ArrayClass->array_median($numbers));    //get the median/second quartile value of an array

echo "\n THIRD QUARTILE:";
var_dump($ArrayClass->array_thirdQuartile($numbers));    //get the third quartile of an array

echo "\n ASC ORDER:";
var_dump($ArrayClass->array_order($numberstrue));    //get array in ascending order

$stringarray = array(array("a""b"), array("c""d"));

echo 
"\n ARRAY TO STRING:";
$str $ArrayClass->array2str($stringarraytrue);    //change a array to a string
var_dump($str);

echo 
"\n STRING TO ARRAY:";
var_dump($ArrayClass->str2array($str));    //recover a array to a string
?>