Skip to content

Commit

Permalink
general/presenters.html 修正
Browse files Browse the repository at this point in the history
行を揃えたりスペースを追加したりtypo修正
  • Loading branch information
sharkpp committed Nov 2, 2015
1 parent 24644a1 commit 6091c76
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions general/presenters.html
Original file line number Diff line number Diff line change
Expand Up @@ -136,23 +136,22 @@ <h3 id="functions">関数をビューに渡す</h3>
}
}

// presenter viewの中で使える:
// presenter view の中で使える:
echo $somevar, $othervar; // 出力: "somevalue" "othervalue"
$echo_upper('this string'); // 出力: "THIS STRING"</code></pre>

<p class="note">
クロージャはフィルタリングに関して値と同様に扱われます。
クロージャはフィルタリングに関して値と同様に扱われます。
値を返すクロージャの場合、<code>set()</code> メソッドを使えば、
その値はフィルタリングの設定に従ってエンコードされます。
もし、上記の例のような修飾子の場合や、
返される値がエンコードされるべきでないクロージャの場合は、
<code>set_safe()</code> メソッドを使うか、<code>set()</code> メソッドの第3引数に <code>false</code>
を指定して下さい。
返される値がエンコードされるべきでないクロージャの場合は、 <code>set_safe()</code> メソッドを使うか、
<code>set()</code> メソッドの第 3 引数に <code>false</code> を指定して下さい。
</p>

<p>
クロージャがフィルタされないことを期待しているレガシーアプリケーションでは、
アプリケーションの設定ファイル <strong>config.php</strong> を編集せい、次のキーを追加します:
アプリケーションの設定ファイル <strong>config.php</strong> を編集し、次のキーを追加します:
</p>

<pre class="php"><code>/**
Expand Down

0 comments on commit 6091c76

Please sign in to comment.