💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
``` ~~~ /** * @param string $img * @param bool $imgHtmlCode * @return string * @describe:img to base64 */ function imgtobase64($img = '', $imgHtmlCode = true) { $imageInfo = getimagesize($img); //$base64 = "" . chunk_split(base64_encode(file_get_contents($img))); return 'data:' . $imageInfo['mime'] . ';base64,' . chunk_split(base64_encode(file_get_contents($img))); } ~~~ ```