💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、豆包、星火、月之暗面及文生图、文生视频 广告
## getLastError ##### Description The last error message (if any) returned from a SCRIPT call 取得最后的错误消息。 ##### Parameters *none* ##### Return Value A string with the last returned script based error message, or NULL if there is no error ##### Examples ``` <pre class="calibre16">$redis->eval('this-is-not-lua'); $err = $redis->getLastError(); // "ERR Error compiling script (new function): user_script:1: '=' expected near '-'" ``` ##