「PHPの基礎 - 文字列」の版間の差分

ナビゲーションに移動 検索に移動
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) {

案内メニュー