るりまサーチ (Ruby 2.1.0)

最速Rubyリファレンスマニュアル検索!
1件ヒット [1-1件を表示] (0.040秒)
トップページ > クエリ:>[x] > クエリ:gateway_interface[x] > バージョン:2.1.0[x] > 種類:ライブラリ[x]

別のキーワード

  1. cgi gateway_interface
  2. cgi/core gateway_interface
  3. queryextension gateway_interface
  4. httpstatus rc_bad_gateway
  5. httpstatus rc_gateway_timeout

検索結果

cgi (94.0)

CGI プログラムの支援ライブラリです。

CGI プログラムの支援ライブラリです。

CGI プロトコルの詳細については以下の文書を参照してください。

* https://tools.ietf.org/html/draft-coar-cgi-v11-03
* 3875: The Common Gateway Interface (CGI) Version 1.1
* https://www.w3.org/CGI/

=== 使用例

==== フォームフィールドの値を得る

//emlist[][ruby]{
require "cgi"
cgi = CGI.new
values = cgi['field_name'] ...