PHP一覧

連想配列のソート

  • 2022/04/30
  • PHP

キーでのソート
昇順→ksort()
降順→krsort()

値でのソート
昇順→asort()
降順→arsort()

参考URL : https://www.yoheim.net/blog.php?q=20191103

foreach文

  • 2022/04/30
  • PHP

$my_array = array("item1", "item2", "item3", "item4", "item5");
// 配列の要素を出力

foreach($my_array as $value){ 
  echo $value . "\n";
}


連想配列の場合

$my_array = array(
  "key1" => "value1",
  "key2" => "value2",
  "key3" => "value3",
  "key4" => "value4",
  "key5" => "value5"
);

// 連想配列の要素を出力
foreach($my_array as $key => $value){ 
   echo "key:" . $key . ", value:" . $value . "\n";


// valueのみを取得
foreach($my_array as $value){ 
   echo "value:" . $value . "\n";
}

参考URL : https://www.fenet.jp/dotnet/column/language/6290/

WordPressで表示される文字数を制限する

  • 2022/04/27
  • PHP

<?php
  if(mb_strlen($post->post_content, 'UTF-8')>200){
    $content= mb_substr(strip_tags($post->post_content), 0, 200, 'UTF-8');
    echo $content.'……';
  }else{
    echo strip_tags($post->post_content);
  }
?>

 

参考URL
https://www.m-hand.co.jp/program/5130/