るりまサーチ

最速Rubyリファレンスマニュアル検索!
156件ヒット [1-100件を表示] (0.101秒)
トップページ > クエリ:t[x] > クラス:CGI[x] > ライブラリ:cgi/core[x]

別のキーワード

  1. openssl t61string
  2. asn1 t61string
  3. matrix t
  4. t61string new
  5. fiddle type_size_t

キーワード

検索結果

<< 1 2 > >>

CGI#accept_charset -> String (6103.0)

受けとることができるキャラクタセットを文字列で返します。 デフォルトは UTF-8 です。

...受けとることができるキャラクタセットを文字列で返します。
デフォルトは UTF-8 です。

@see CGI.accept_charset, CGI.accept_charset=...

CGI#out(options = "text/html") { .... } (6103.0)

HTTP ヘッダと、ブロックで与えられた文字列を標準出力に出力します。

...HTTP ヘッダと、ブロックで与えられた文字列を標準出力に出力します。

HEADリクエスト (REQUEST_METHOD == "HEAD") の場合は HTTP ヘッダのみを出力します。

charset が "iso-2022-jp"・"euc-jp"・"shift_jis" のいずれかで
ある場合は文字列エ...
...@param options Hash か文字列で HTTP ヘッダを生成するための情報を指定します。

例:
cgi
= CGI.new
cgi
.out{ "string" }
# Content-Type: text/html
# Content-Length: 6
#
# string

cgi
.out("text/plain"){ "string" }...
...Content-Type: text/plain
# Content-Length: 6
#
# string

cgi
.out({"nph" => true,
"status" => "OK", # == "200 OK"
"server" => ENV['SERVER_SOFTWARE'],
"connection" => "close",
"typ...

CGI#print(*strings) (6103.0)

@todo

...@todo

引数の文字列を標準出力に出力します。
cgi
.print は $DEFAULT_OUTPUT.print と等価です。

例:
cgi
= CGI.new
cgi
.print "This line is a part of content body.\r\n"...

CGI.accept_charset -> String (6103.0)

受けとることができるキャラクタセットを文字列で返します。 デフォルトは UTF-8 です。

...受けとることができるキャラクタセットを文字列で返します。
デフォルトは UTF-8 です。...

CGI.accept_charset=(charset) (6103.0)

受けとることができるキャラクタセットを設定します。

...受けとることができるキャラクタセットを設定します。

@param charset 文字列でキャラクタセットの名前を指定します。

@see spec/m17n...

絞り込み条件を変える

CGI::HTTP_STATUS -> Hash (6103.0)

HTTP のステータスコードを表すハッシュです。

...HTTP のステータスコードを表すハッシュです。...

CGI::MAX_MULTIPART_COUNT -> Integer (6103.0)

Maximum number of request parameters when multipart

...Maximum number of request parameters when multipart...

CGI::MAX_MULTIPART_LENGTH -> Integer (6103.0)

Maximum content length of multipart data

...Maximum content length of multipart data...

CGI::PATH_SEPARATOR -> Hash (6103.0)

パスの区切り文字を格納します。

パスの区切り文字を格納します。
<< 1 2 > >>