💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
## curl.curl_easy_setopt ### 接口说明 >设置CURL变量参数 > +++ put:curl_easy_setopt var:curl=CURL变量# var:option=参数类型# var:value=值# <<< success 无返回值 +++ ### 代码演示 ~~~ import ["curl"]; var url = curl.curl_easy_init(); curl.curl_easy_setopt(url,curl.CURLOPT_URL,"http://www.baidu.com"); curl_easy_cleanup(url); ~~~