public function LPush($key, $value) { if (!is_array($value)) { $value = func_get_args(); } else { array_unshift($value, $key); } return $this->__call('lpush', $value); }