PHP

説明
glob(string $pattern, int $flags = 0): array|false
glob() 関数は libc の glob() 関数で使われるルールに基づいて pattern にマッチする ...

PHP

書式
is_object(mixed $value): bool
与えられた変数がオブジェクトかどうかを調べます
戻り値 もし value が object型 の場合 true、 そうでない場合は false ...

PHP

書式
public DateTime::diff ( DateTimeInterface $targetObject ) : DateInterval
%R 正の値の場合(+)
%a 負の値の場合(-) ...

PHP

書式
public DateTime::diff ( DateTimeInterface $targetObject ) : DateInterval
使用例

<?php$dtA = new DateTi ...

PHP

書式
date(string $format, int|null $timestamp = null): string
指定された引数 timestamp を、与えられた フォーマット文字列によりフォーマットし、日付文 ...

PHP

書式
public DateTime::format(string $format): string

使用例

$cft = new DateTime();$resA = $cft->format("Y/ ...

PHP

書式
abstract class クラス名
使用例

//抽象クラスabstract class Sample{   //抽象メソッド abstract function getUsername();}//継承c ...

PHP

書式
abstract class クラス名{
function メソッド名()
}
使用例

//抽象クラスabstract class Sample{   //抽象メソッド abstract f ...

PHP

書式
$配列名 = array (‘キー1’ => ‘値1′,’キー2’=>’値2’,…)
for ...

PHP

サンプル
<?php
$pa1 = “World”;
$pa2 = “as follow:”;
$x = 6;
$y = 5;

...

PHP

書式
$配列名 = file(ファイル名)
file関数を使用してテキストファイルを読み込んでファイルに格納します。
使用例

<?php//ファイルを読み込んで配列に格納します $content = ...

PHP

書式
preg_split(“//”, 文字列)
使用例

<?php$strA = "AA01,BB02:CC03,DD04:EE05,";$resArr = preg_split( ...

PHP

書式
password_hash(string $password, string|int|null $algo, array $options = []): string
強力な一方向ハッシュアルゴリズムを使って、 ...

PHP

PHPコード

<?php$a = bindec(110110110);$b = bindec(101010101); echo decbin( $a ^ $b ) ."<br>\n";echo decbin( ...

PHP

書式
range(string|int|float $start, string|int|float $end, int|float $step = 1): array
start から end までの整数の配列を返し ...

PHP

書式
is_null ( mixed $value ) : bool
value が null の場合に true、 それ以外の場合に false を返します。
PHPコード

<?phperror_ ...

PHP

書式
$配列名 = array (
‘キー1′ =>’値1’
);
print_r(配列名)
関数
print_r(mixed $v ...

PHP

関数
array_fill(int $start_index, int $count, mixed $value): array
パラメータ value を値とする count 個のエントリからなる配列を埋めます。 ...