null Core_Pagination::__call( )
512513514515516517518519520521522523public
function
__call(
$method
,
$params
)
{
// 兼容V2中的get_***() 方法
if
(
substr
(
$method
, 0, 4) ==
'get_'
)
{
$key
=
substr
(
$method
, 4);
return
$this
->__get(
$key
);
}
throw
new
Exception(
'class Pagination not found method : '
.
$method
);
}