2 | 3 | 4 | 5 | 6

document.write("<INPUT TYPE=\"submit\">") //前に\をつける
...続きを表示



.clearfix:after {
content: "";
clear: both;
display: block;
}
...続きを表示



p.sample {
position: relative;
top: 50px;
z-index: 2; //0~の整数値で指定、値が大きいほど上になる
}
...続きを表示



:first-child {} //最初の行のみ指定
:nth-child(n) {} //n番目の行のみ指定
:nth-child(2n) {} //奇数行のみ指定
:last-child {} //最後の行のみ指定
:nth-last-child(n) {} //最後からn番目の行のみ指定
...続きを表示



if(preg_match('#/console/#', $_SERVER['REQUEST_URI'])) {
//ここに処理を書く
}
...続きを表示



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追記
...続きを表示


2 | 3 | 4 | 5 | 6

▲上に戻る