:first-child {} //最初の行のみ指定
:nth-child(n) {} //n番目の行のみ指定
:nth-child(2n) {} //奇数行のみ指定
:last-child {} //最後の行のみ指定
:nth-last-child(n) {} //最後からn番目の行のみ指定
...続きを表示
function makeRandStr($length)
{
//PWの文字数
$str = array_merge(range('a', 'z'), range('0', '9'), range('A', 'Z'));
$r_str = null;
...続きを表示
$str = '0123456789';
$str = mb_strimwidth($str, 0, 7, '…', 'UTF-8'); //追加した文字もカウントに含む
echo $str; //012345…が出力される
...続きを表示
$date = new DateTime('2015-11-30 12:34:56');
$val1 = $date->format('Y-m-d');
$val2 = $date->format('m-d');
//2016-02-29追記
...続きを表示