るりまサーチ (Ruby 2.1.0)

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

別のキーワード

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

ライブラリ

モジュール

検索結果

CGI::QueryExtension#gateway_interface -> String (54655.0)

ENV['GATEWAY_INTERFACE'] を返します。

ENV['GATEWAY_INTERFACE'] を返します。

cgi (73.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'] ...