るりまサーチ

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

別のキーワード

  1. string []=
  2. string slice
  3. string []
  4. string slice!
  5. string gsub

ライブラリ

クラス

キーワード

検索結果

WEBrick::Cookie#domain=(value) (15101.0)

ドメイン名を文字列で表すアクセサです。

ドメイン名を文字列で表すアクセサです。

@param value ドメイン名を表す文字列を指定します。

CGI::Cookie (18.0)

クッキーを表すクラスです。

...ue # optional
})

cgi.out({"cookie" => [cookie1, cookie2]}){ "string" }

name = cookie1.name
values = cookie1.value
path = cookie1.path
domain =
cookie1.domain
expires = cookie1.expires
secure = cookie1.secure
httponly = cookie1....
...httponly

cookie1.name = 'name'
cookie1.value = ['value1', 'value2', ...]
cookie1.path = 'path'
cookie1.domain = 'domain'
cookie1.expires = Time.now + 30
cookie1.secure = true
cookie1.httponly = true

@see 2965...

CGI::Cookie.new(name = "", *value) -> CGI::Cookie (18.0)

クッキーオブジェクトを作成します。

...})

cgi.out({"cookie" => [cookie1, cookie2]}){ "string" }

name = cookie1.name
values = cookie1.value
path = cookie1.path
domain =
cookie1.domain
expires = cookie1.expires
secure = cookie1.secur...
...httponly = cookie1.httponly

cookie1.name = 'name'
cookie1.value = ['value1', 'value2', ...]
cookie1.path = 'path'
cookie1.domain = 'domain'
cookie1.expires = Time.now + 30
cookie1.secure = true
cookie1.httponly = true...