Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
TMDbのドキュメントによると、JSON リクエストを実行するには、CGI エスケープ文字列を配置する必要があります。私はPHPを使用しており、次の文字列があります。
$string = "Movie name"; $search = $tmdb->searchMovie($string);
JSON API リクエストに入れるには、$string を「CGI エスケープ」する必要があります。
何か案は?ありがとうございました
それはこれを意味します
urlencode(string);
だからあなたの場合:
$search = $tmdb->searchMovie(urlencode($string));