PHP

phpコード:

$to = “arkgame.com@gmail.com”;
$subject = “arkgame.com “;
$body = ̶ ...

PHP

1. if…else

説明:

if (condition)
code to be executed if condition is true;
else
code to be ...

PHP

phpコード:

<?phpswitch ($x){case 1: echo "Number 1"; break;case 2: echo "Number 2"; break;case 3: echo "Number 3"; br ...

PHP

PHPコード:
function safe_redirect($url, $exit=true) {

//Only use the header redirection if headers are not alr ...

PHP

PHPコード:
<?php

$data = file_get_contents(‘codespeed.txt’);
$fsize = filesize(“codes ...

PHP

PHPコード:
<?php
define(‘CACHE_ROOT’, dirname(__FILE__).’/cache’);//キャッシュ格納ディレクトリ

PHP

1.startnews24_rss.php
phpコード:
<?php

require “XML/rss.php”;
$rss = new XML_RSS(“ ...

PHP

説明
reset ( array &$array ) : mixed
reset() は、array の内部ポインタの先頭の要素に戻し、
配列の最初の要素の値を返します。
PHPコード

& ...

PHP

1.クッキーを設定
setcookie(“LoginUser”,1);
クッキーを判定

if(isset($_COOKIE)) {//some code} else { xxxx}

2 ...

PHP

説明
array_diff_key ( array $array , array …$arrays ) : array
array のキーを arrays のキーと比較し、その差を返します。
PHP ...

PHP

書式
class 子クラス名 extends 親クラス名 {
public function オーバライドのメソッド名
使用例

<?phpclass User{//getMsgメソッド public ...

PHP

書式
parent::__construct(変数名)
使用例

<?php//親クラスclass User{ public $usrAddr; public function __construct($ad ...

PHP

説明
end ( array &$array ) : mixed
end() は array の内部ポインタを最後の要素まで進め、その値を返します。
サンプルコード
<?php
$ ...

PHP

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

//抽象クラスabstract class Sample{  //変数   public $count = 567 ...

PHP

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

<?php$strA = "2021/05/21";$resArr = preg_split("/\//", $strA ...

PHP

関数
mt_getrandmax(): int
mt_getrandmax — 乱数値の最大値を表示する
mt_rand() を引数なしでコールしたときに取得できる乱数の最大値を返します。 mt_rand() ...

PHP

説明
htmlspecialchars ( string $string ]] ) : string
htmlspecialchars — 特殊文字を HTML エンティティに変換します。
パラメータ

PHP

書式
new PDO(dsn名,ユーザ名,パスワード)
使用例

<?php//DB接続情報$dsn = 'pgsql:host=172.17.2.110;dbname=testdb';$username = ...