検索

phrase: max: clip:
target: order:
Results of 161 - 170 of about 1237 for n (0.020 sec.)
演算子の優先順位 3345
« 演算子 算術演算子 » PHP Manual 演算子 演算子の優先順位 演算子の優先順位 演算子の優先順位は、二 ... す。 演算子の優先順位 結合時の評価 演算子 追加情報 (n/a) clone new clone および new right ** 算術演算子 ... (n/a) + - ++ -- ~ (int) (float) (string) (array) (obj ... 演算子 , 型の相互変換 そして エラー制御演算子 left instanceof 型演算子 (n/a) ! 論理演算子 left * / % 算術 ... 算子 left && 論理演算子 left || 論理演算子 right ?? NULL合体演算子 結合しない ? : 三項演算子 (PHP 8.0.0 ...
https://man.plustar.jp/php/language.operators.precedence.html - [similar]
アーカイブ内のエントリのインデックスを返す 3345
« ZipArchive::isEncryptionMethodSupported ZipArchive::open » PHP Manual ZipArchive アーカイブ内の ... エントリのインデックスを返す ZipArchive::locateName (PHP 5 >= 5.2.0, PHP 7, PHP 8, PECL zip >= 1.5. ... 0) ZipArchive::locateName — アーカイブ内のエントリのインデックスを返す 説 ... 明 public ZipArchive::locateName ( string $name , int $flags = 0 ): int | false ... を使用して、エントリの場所を取得します。 パラメータ name 探したいエントリの名前。 flags この関数は、アー ...
https://man.plustar.jp/php/ziparchive.locatename.html - [similar]
PHP 変数を SQL 文のパラメータにバインドする 3316
« db2_autocommit db2_client_info » PHP Manual IBM DB2 関数 PHP 変数を SQL 文のパラメータにバイン ... ドする db2_bind_param (PECL ibm_db2 >= 1.0.0) db2_bind_param — PH ... 変数を SQL 文のパラメータにバインドする 説明 db2_bind_param ( resource $stmt , int $parameter_number , ... string $variable_name , int $parameter_type = ? , int $d ... ata_type = 0 , int $precision = -1 , int $scale = 0 ): bool db2_prep ...
https://man.plustar.jp/php/function.db2-bind-param.html - [similar]
数値を除算する 3316
« gmp_com gmp_div_qr » PHP Manual GMP 関数 数値を除算する gmp_div_q (PHP 4 >= 4.0.4, PHP 5, PHP ... gmp_div_q — 数値を除算する 説明 gmp_div_q ( GMP | int | string $num1 , GMP | int | string $num2 , int $ ... rounding_mode = GMP_ROUND_ZERO ): GMP num1 を num2 で割 ... り、 結果を整数で返します。 パラメータ num1 割られる数。 GMP オブジェクト、整数、あるいは数 ... 値に変換可能な数値形式の文字列。 num2 num1 を割る数。 GMP オブジェクト、整数、あるいは ...
https://man.plustar.jp/php/function.gmp-div-q.html - [similar]
SplFileObject のフラグを取得する 3316
« SplFileObject::getCurrentLine SplFileObject::getMaxLineLen » PHP Manual SplFileObject SplFileO ... を取得する 説明 public SplFileObject::getFlags (): int SplFileObject のインスタンス用のフラグセットを in ... 数にはパラメータはありません。 戻り値 フラグを表す int を返します。 例 例1 SplFileObject::getFlags() の例 ... <?php $file = new SplFileObject ( __FILE__ , "r" ); if ( $file -> ... bject :: SKIP_EMPTY ) { echo "空行を読み飛ばします\n" ; } else { echo "空行を読み飛ばしません\n" ; } $f ...
https://man.plustar.jp/php/splfileobject.getflags.html - [similar]
The EventBuffer class 3293
« EventBase::stop EventBuffer::add » PHP Manual Event The EventBuffer class The EventBuffer clas ... s (PECL event >= 1.5.0) はじめに EventBuffer represents Libeven ... t's "evbuffer", an utility functionality for buffered I/O. Event buff ... ers are meant to be generally useful for doing the "buffer" par ... t of buffered network I/O. クラス概要 class EventBuffer { /* Const ...
https://man.plustar.jp/php/class.eventbuffer.html - [similar]
年月日時分秒の値を加え、新しいオブジェクトを返す 3293
« DateTimeImmutable DateTimeImmutable::__construct » PHP Manual DateTimeImmutable 年月日時分秒の ... クトを返す 説明 public DateTimeImmutable::add ( DateInterval $interval ): DateTimeImmutable 指定された Da ... teInterval オブジェクトを、 指定された DateTime オブジェ ... ェクト。 この関数は、このオブジェクトを変更します。 interval DateInterval オブジェクト。 戻り値 新しく変更 ... table::add() の例 オブジェクト指向型 <?php $date = new DateTimeImmutable ( '2000-01-01' ); $newDate = $ ...
https://man.plustar.jp/php/datetimeimmutable.add.html - [similar]
年月日時分秒の値を引く 3293
« DateTimeImmutable::setTimezone DateTimeInterface » PHP Manual DateTimeImmutable 年月日時分秒の ... の値を引く 説明 public DateTimeImmutable::sub ( DateInterval $interval ): DateTimeImmutable 指定した Date ... Interval オブジェクトを、 指定した DateTimeImmutable ... ェクト。 この関数は、このオブジェクトを変更します。 interval DateInterval オブジェクト。 戻り値 新しく変更 ... table::sub() の例 オブジェクト指向型 <?php $date = new DateTimeImmutable ( '2000-01-20' ); $newDate = $ ...
https://man.plustar.jp/php/datetimeimmutable.sub.html - [similar]
処理フラグを設定する 3293
« FilesystemIterator::rewind FilterIterator » PHP Manual FilesystemIterator 処理フラグを設定する ... 設定する 説明 public FilesystemIterator::setFlags ( int $flags ): void 処理フラグを設定します。 パラメータ ... の例 この例は、フラグ FilesystemIterator::KEY_AS_PATHNAME と FilesystemIterator::KEY_AS_FILENAME の違いを ... 示します。 <?php $iterator = new FilesystemIterator ( dirname ( __FILE__ ), Files ... ystemIterator :: KEY_AS_PATHNAME ); echo "Key as Pathname:\n" ; foreach ( $itera ...
https://man.plustar.jp/php/filesystemiterator.setflags.html - [similar]
ビットが設定されているかどうかを調べる 3293
« gmp_sub gmp_xor » PHP Manual GMP 関数 ビットが設定されているかどうかを調べる gmp_testbit (PHP ... されているかどうかを調べる 説明 gmp_testbit ( GMP | int | string $num , int $index ): bool 指定したビット ... が設定されているかどうかを調べます。 パラメータ num GMP オブジェクト、整数、あるいは数値に変換可能な ... 数値形式の文字列。 index 調べたいビット。 戻り値 num にビットが設定されて ... それ以外の場合に false を返します。 エラー / 例外 index に負の数を指定すると E_WARNING が発生し、 false ...
https://man.plustar.jp/php/function.gmp-testbit.html - [similar]