max() public method

Returns maximum value from a column.
public max ( $column ) : integer
return integer
コード例 #1
0
ファイル: HyperSelection.php プロジェクト: filsedla/hyperrow
 /**
  * Returns maximum value from a column.
  *
  * @param $column string
  * @return int
  */
 public function max($column)
 {
     return $this->selection->max($column);
 }