如果我不能死在一万个敌人的包围中,那就让我死在一万个美女的怀抱中吧
Posts tagged tips
kohana3 tips: get orm validate errors
Oct 26th
echo kohana::debug($orm_object->validate()->errors());
kohana3 tips: current uri
Oct 16th
完全版本(带GET参数):
$current_uri = URL::site($this->request->uri).'?'.http_build_query($_GET, '&');
干净版本:
$current_uri = URL::site($this->request->uri);