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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
PSDI Army
yii2
Commits
00c9741a
Commit
00c9741a
authored
Jan 13, 2015
by
Nobuo Kihara
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
docs/guide-ja/helper-array.md - added [ci skip]
parent
7bc5e282
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
2 deletions
+3
-2
README.md
docs/guide-ja/README.md
+1
-1
helper-array.md
docs/guide-ja/helper-array.md
+0
-0
helper-overview.md
docs/guide-ja/helper-overview.md
+2
-1
No files found.
docs/guide-ja/README.md
View file @
00c9741a
...
...
@@ -192,7 +192,7 @@ RESTful ウェブサービス
------
*
[
概要
](
helper-overview.md
)
*
**翻訳未着手**
[
ArrayHelper
](
helper-array.md
)
*
[
ArrayHelper
](
helper-array.md
)
*
**翻訳未着手**
[
Html
](
helper-html.md
)
*
**翻訳未着手**
[
Url
](
helper-url.md
)
docs/guide-ja/helper-array.md
0 → 100644
View file @
00c9741a
This diff is collapsed.
Click to expand it.
docs/guide-ja/helper-overview.md
View file @
00c9741a
...
...
@@ -4,7 +4,7 @@
> Note|注意: この節はまだ執筆中です。
Yii は、一般的なコーディングのタスク、例えば、文字列や配列の操作、HTML コードの生成などを手助けする多くのクラスを提供しています。
これらのヘルパクラスは
`yii\helpers`
名前空間の下に
されており、すべてスタティックな (すなわち、スタティックなプロパティとメソッドのみを含み、インスタンス化すべきでない) クラス
です。
これらのヘルパクラスは
`yii\helpers`
名前空間の下に
組織されており、すべてスタティックなクラス (すなわち、スタティックなプロパティとメソッドのみを含み、インスタンス化すべきでないクラス)
です。
ヘルパクラスは、そのスタティックなメソッドの一つを直接に呼び出すことによって使用します。
例えば、
...
...
@@ -45,6 +45,7 @@ echo Html::encode('Test > test');
コアヘルパクラス (例えば
[
[yii\helpers\ArrayHelper
]
]) をカスタマイズするためには、そのヘルパに対応する基底クラス (例えば
[
[yii\helpers\BaseArrayHelper
]
]) を拡張するクラスを作成して、名前空間も含めて、対応する具象クラス (例えば
[
[yii\helpers\ArrayHelper
]
]) と同じ名前を付けます。
このクラスが、フレームワークのオリジナルの実装を置き換えるものとしてセットアップされます。
次の例は、
[
[yii\helpers\ArrayHelper
]
] クラスの
[
[yii\helpers\ArrayHelper::merge()|merge()
]
] メソッドをカスタマイズする方法を示すものです。
```
php
...
...
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