各位有没有PHP的案例学习一下,总是搞不懂
Ta的回复 :<?php require_once 'AipImageSearch.php'; const APP_ID = 'xxxx'; const API_KEY = 'xxxx'; const SECRET_KEY = 'xxxx'; $client = new AipImageSearch(APP_ID, API_KEY, SECRET_KEY); //入库,先检查有没有选择图片 $file = $_FILES["riku_image"]; if ($file["error"] > 0) { echo "没有选择图片!"; }else{ $image = file_get_contents($file['tmp_name']); $options = array(); $options["brief"] = $file['name']; // 调用相似图检索—入库 $client -> similarAdd($image, $options); print_r('<pre>'); print_r($client); }