PHP

書式
function 関数名() {
return 配列の値;
}

関数に配列の要素を変えします

使用例

<?php//関数funAの定義function funA(){ ...

PHP

構文
chunk_split(文字列, 長さ)
文字列をより小さな部分に分割します

使用例

<?php$str = "studyskillinarkgame"; print_r('<pre ...

PHP

CSVファイル

1001,"yamda","東京"2002,"user002","大阪"

使用例

<?php//読み込むcsvファイル$filename = "C:\\study\\test.csv";//ファイ ...

PHP

書式
//
使用例

<?php/*「X」または「Y」または「Z」の文字を指定*/$str = "//";echo preg_match($str,"XYZ")."<br>";echo preg_ ...

PHP

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

<?php$strA = "A01B02C03D04";$resArr = preg_split("/\t/", $st ...

PHP

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

<?php$strA = "A01 B02 C03 D04";$resArr = preg_split("/\s/", ...

PHP

書式
htmlentities — 適用可能な文字を全て HTML エンティティに変換する
使用例

<?php $target = "<a href=\"\">test</a>"; ...

PHP

構文
print_r(mixed $value, bool $return = false): string|bool
string、int, float を指定した場合はその値が出力されます。
使用例 ...

PHP

書式
range(string|int|float $start, string|int|float $end, int|float $step = 1): array
start
シーケンスの最初の値。 ...

PHP

説明
json_encode(mixed $value, int $flags = 0, int $depth = 512): string|false
与えられた value を JSON 形式にした文字列を返します ...

PHP

書式
call_user_func_array(callable $callback, array $args): mixed
args にパラメータを指定して、 callback で指定したユーザー定義関数をコールし ...

PHP

説明
call_user_func(callable $callback, mixed …$args): mixed
パラメータ callback で指定したユーザー定義のコールバック関数をコールします。 ...

PHP

書式
method=”post” action=”xxx”
サンプルコード

<form method="post" action="regform.php"& ...

PHP

書式
abstract class クラス名 {
public 変数名
使用例

<?php//抽象クラスabstract class Sample { abstract function getMe ...

PHP

書式
final public function 関数名()
使用例

<?phpclass User{//finalメソッド final public function getMsg(){ return " ...

PHP

書式
abstract class クラス名 {
function 関数名()
使用例

<?php//抽象クラスabstract class Sample { abstract function g ...

PHP

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

<?php//抽象クラスabstract class Sample { abst ...

PHP

書式
compact ( array|string $var_name , array|string …$var_names )
: array
各引数について、compact() は現在のシンボル ...