mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-05-06 18:42:15 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.0-DB@8395 201d5d3c-b55e-5fd7-737f-ddc643e51545
16 lines
No EOL
259 B
PHP
16 lines
No EOL
259 B
PHP
<?php
|
|
class Limit {
|
|
var $start;
|
|
var $end;
|
|
|
|
function Limit($page, $list_count){
|
|
$this->start = ($page-1)*$list_count;
|
|
$this->end = $list_count;
|
|
}
|
|
|
|
function toString(){
|
|
return $this->start . ' , ' . $this->end;
|
|
}
|
|
}
|
|
|
|
?>
|