Skip to content

Instantly share code, notes, and snippets.

@fitorec
Created October 27, 2009 15:48
Show Gist options
  • Save fitorec/219649 to your computer and use it in GitHub Desktop.
Save fitorec/219649 to your computer and use it in GitHub Desktop.
<?php
class param{
private $vals;
private $name;
private $entropia;
function __construct($name) {
$this->vals = array();
$this->name =$name;
$this->entropia = -1;
}
function push(){
array_push($this->vals,$val)
}
function delete(){
//
}
}
?>
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment