13,133
回編集
(→全角・半角) |
|||
| 205行目: | 205行目: | ||
==== 長い文字列を省略して表示 (例: ブログの要約等) ==== | ==== 長い文字列を省略して表示 (例: ブログの要約等) ==== | ||
<syntaxhighlight lang="php"> | <syntaxhighlight lang="php"> | ||
function createExcerpt($text, $length = 100) | function createExcerpt(&$text, $length = 100) | ||
{ | { | ||
if (mb_strlen($text) > $length) { | if (mb_strlen($text) > $length) { | ||