Windows10

操作方法
1.スタートメニューから「設定」アイコンをクリックします。

2.「アカウント」をクリックします。

3.左メニューの「サインインオプション」をクリックします。

4.「パスワード」をク ...

Browser

操作方法
1.Chromeの右上のボタンから、設定を選択します。

2.「プライバシーとセキュリティ」->「サイトの設定」をクリックします。

3.「通知」を選択します。

4.サイト毎にブ ...

jQuery

構文
str.split(区切り文字列)

使用例1
var city = ‘tokyo,yamada,oosaki’;
//カンマで区切って分割する
var cft ...

Windows10

操作方法
1.スタートメニューから「設定」アイコンをクリックします。

2.「アカウント」をクリックします。

3.左メニューの「家族とその他のユーザー」をクリックします。

4.削除したいアカウ ...

C#

構文
public void Remove (object value);
特定のオブジェクトが IList 内にあるときに、最初に出現したものを削除します。
value IList から削除するオブジェクト。 ...

C#

構文
public void RemoveAt (int index);
指定したインデックスにある IList 項目を削除します。
index
削除する項目の 0 から始まるインデックス。
C ...

PHP

説明
getdate ( ) : array
引数
$timestamp
タイムスタンプを指定します。
返り値
日付/時刻/曜日を連想配列を返します。

連想配列
&# ...

PHP

■構文
int strtotime ( string $time )
引数
datetime
日付/時刻を英文形式で指定します。
$timestamp
Unix タイムスタンプを指定し ...

PHP

説明
strptime ( string $date , string $format ) : array
strptime() は date をパースした結果を配列で返します。エラー時には FALSE を返します。 ...

PHP

構文
bool checkdate ( int $month , int $day , int $year )
引数
$month 月 $day 日  $year 年
返り値
指定した日付が正し ...

CSS

操作方法
1.no-repeatで背景画像を繰り返し表示しない
<div style=”background-image:url(‘../img/logo.gif’);back ...

C#

構文
public static int Count<TSource> (this System.Collections.Generic.IEnumerable<TSource> source);

C#

構文
public string ToString (string? format);
format で指定された、このインスタンスの値の文字列形式。
C#コード

using System;using S ...

C#

構文
public static int Parse (string s);
数値の文字列形式を、それと等価な 32 ビット符号付き整数に変換します。
C#コード

using System;using S ...

PHP

構文
! $cft
$cftがFALSEで否定結果がTRUE、$cftがTRUEで否定結果がFALSE
PHPコード
$flgA = false;
$flgA = !$flgA;
var ...

C#

構文
public static bool Contains<TSource> (this System.Collections.Generic.IEnumerable<TSource> source, ...

PHP

説明
排他的論理和 $cftA xor $cftB
$cftA と $cftB のいずれかがTRUEの場合、結果がTRUE
PHPコード

<?php$cft = 45;if( $cft > 6 ...

PHP

説明
論理和 $cftA and $cftB
$cftA && $cftB
論理積 $cftA or $cftB
$cftA || $cftB
△ 論理和(and、&&a ...