PDO4You\Pagination::getCurrentPage PHP 메소드

getCurrentPage() 개인적인 정적인 메소드

Get the number of the current page
private static getCurrentPage ( ) : integer
리턴 integer
    private static function getCurrentPage()
    {
        return isset($_REQUEST[self::$paginator]) ? (int) $_REQUEST[self::$paginator] : 1;
    }