るりまサーチ

最速Rubyリファレンスマニュアル検索!
48件ヒット [1-48件を表示] (0.130秒)

別のキーワード

  1. rexml/document new
  2. rexml/document write
  3. rexml/document to_s
  4. rexml/document clone
  5. rexml/document node_type

ライブラリ

クラス

キーワード

検索結果

CGI::Cookie#expires -> Time (26101.0)

クッキーの有効期限を返します。

クッキーの有効期限を返します。

CGI::Cookie#expires=(value) (14101.0)

クッキーの有効期限をセットします。

クッキーの有効期限をセットします。

@param value 有効期限を Time のインスタンスで指定します。

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

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

...この CGI スクリプトのベースディレクトリです。
: domain
このクッキーを適用するドメインを指定します。
: expires
このクッキーの有効期限を Time のインスタンスで指定します。
: secure
真を指定すると、このクッキーはセ...
...'path' => 'path', # optional
'domain' => 'domain', # optional
'expires' => Time.now, # optional
'secure' => true # optional
'httponly'...
...ain
expires
= cookie1.expires
secure = cookie1.secure
httponly = cookie1.httponly

cookie1.name = 'name'
cookie1.value = ['value1', 'value2', ...]
cookie1.path = 'path'
cookie1.domain = 'domain'
cookie1.expires...

CGI::Cookie (8024.0)

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

...'path' => 'path', # optional
'domain' => 'domain', # optional
'expires' => Time.now, # optional
'secure' => true # optional
'httponly' => true...
...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
cookie...