Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yii2
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Rotua Panjaitan
yii2
Commits
e14e775e
Commit
e14e775e
authored
Nov 21, 2014
by
Nobuo Kihara
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
docs/guide-ja/runtime-requests.md - completed [ci skip]
parent
395777aa
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
11 deletions
+11
-11
runtime-requests.md
docs/guide-ja/runtime-requests.md
+11
-11
No files found.
docs/guide-ja/runtime-requests.md
View file @
e14e775e
...
@@ -53,7 +53,7 @@ $param = $request->getBodyParam('id');
...
@@ -53,7 +53,7 @@ $param = $request->getBodyParam('id');
```
```
> Info|情報: `GET` パラメータとは異なって、`POST`、`PUT`、`PATCH` などで送信されたパラメータは、リクエストのボディの中で送られます。
> Info|情報: `GET` パラメータとは異なって、`POST`、`PUT`、`PATCH` などで送信されたパラメータは、リクエストのボディの中で送られます。
上述のメソッドによってこ
ういう
パラメータにアクセスすると、
`request`
コンポーネントがパラメータを解析します。
上述のメソッドによってこ
れらの
パラメータにアクセスすると、
`request`
コンポーネントがパラメータを解析します。
[
[yii\web\Request::parsers
]
] プロパティを構成することによって、これらのパラメータが解析される方法をカスタマイズすることが出来ます。
[
[yii\web\Request::parsers
]
] プロパティを構成することによって、これらのパラメータが解析される方法をカスタマイズすることが出来ます。
...
@@ -115,20 +115,20 @@ if ($headers->has('User-Agent')) { // User-Agent ヘッダが在る }
...
@@ -115,20 +115,20 @@ if ($headers->has('User-Agent')) { // User-Agent ヘッダが在る }
*
[
[yii\web\Request::acceptableLanguages|acceptableLanguages
]
]: ユーザが受け入れ可能な言語を返します。
*
[
[yii\web\Request::acceptableLanguages|acceptableLanguages
]
]: ユーザが受け入れ可能な言語を返します。
返される言語は優先レベルによって順序付けられます。最初の要素が最も優先度の高い言語を表します。
返される言語は優先レベルによって順序付けられます。最初の要素が最も優先度の高い言語を表します。
If your application supports multiple languages and you want to display pages in the language that is the most preferred
あなたのアプリケーションが複数の言語をサポートしており、エンドユーザが最も優先する言語でページを表示したいと思う場合は、
by the end user, you may use the language negotiation method
[
[yii\web\Request::getPreferredLanguage()
]
].
言語ネゴシエーションメソッド
[
[yii\web\Request::getPreferredLanguage()
]
] を使うことが出来ます。
This method takes a list of languages supported by your application, compares them with
[
[yii\web\Request::acceptableLanguages|acceptableLanguages
]
],
このメソッドはアプリケーションによってサポートされている言語のリストを引数として取り、
[
[yii\web\Request::acceptableLanguages|acceptableLanguages
]
]
and returns the most appropriate language.
と比較して、最も適切な言語を返します。
> Tip
: You may also use the [[yii\filters\ContentNegotiator|ContentNegotiator]] filter to dynamically determine
> Tip
|ヒント: [[yii\filters\ContentNegotiator|ContentNegotiator]] フィルタを使用して、レスポンスにおいて
what content type and language should be used in the response. The filter implements the content negotiation
どのコンテントタイプと言語を使うべきかを動的に決定することも出来ます。このフィルタは、上記で説明したプロパティとメソッドの上に、
on top the properties and methods described above.
コンテントネゴシエーションを実装しています。
##
Client Information
<a name="client-information"></a>
##
クライアント情報
<a name="client-information"></a>
You can get the host name and IP address of the client machine through
[
[yii\web\Request::userHost|userHost
]
]
クライアントマシンのホスト名と IP アドレスを、それぞれ、
[
[yii\web\Request::userHost|userHost
]
] と
and
[
[yii\web\Request::userIP|userIP
]
], respectively. For example,
[
[yii\web\Request::userIP|userIP
]
] によって取得することが出来ます。例えば、
```
php
```
php
$userHost
=
Yii
::
$app
->
request
->
userHost
;
$userHost
=
Yii
::
$app
->
request
->
userHost
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment