文字识别PHP怎么获取返回值
Ta的回复 :新建一个PHP,名字随你,内容: const APP_ID = '你的 App ID'; const API_KEY = '你的 Api Key'; const SECRET_KEY = '你的 Secret Key'; $client = new AipOcr(APP_ID, API_KEY, SECRET_KEY); $image = file_get_contents('example.jpg'); // 调用通用文字识别, 图片参数为本地图片 $result = $client->basicGeneral($image);//无可选参数 echo json_encode($result); // 如果你想设置有可选参数则修改 $options = array(); $options["language_type"] = "CHN_ENG"; $options["detect_direction"] = "true"; $options["detect_language"] = "true"; $options["probability"] = "true"; $result = $client->basicGeneral($image, $options); echo json_encode($result);