検索

phrase: max: clip:
target: order:
Results of 271 - 280 of about 3871 for FALSE (0.058 sec.)
Delete items from a working copy or repository 2243
« svn_commit svn_diff » PHP Manual SVN 関数 Delete items from a working copy or repository svn_d ... ory 説明 svn_delete ( string $path , bool $force = false ): bool Deletes the file, directory or symbolic li ... modifications will result in a failure. Default is false 戻り値 成功した場合に true を、失敗した場合に fals ...
https://man.plustar.jp/php/function.svn-delete.html - [similar]
週末が開始/終了した日からの経過時間を取得する 2243
« IntlCalendar::getType IntlCalendar::inDaylightTime » PHP Manual IntlCalendar 週末が開始/終了し ... ar::getWeekendTransition ( int $dayOfWeek ): int | false 手続き型 intlcal_get_weekend_transition ( IntlCale ... ndar $calendar , int $dayOfWeek ): int | false 週末が開始/終了する日からの経過時間をミリ秒単位で返 ... らの経過時間をミリ秒単位で返します。 失敗した場合に false を返します. 例 See example on IntlCalendar::getDay ...
https://man.plustar.jp/php/intlcalendar.getweekendtransition.html - [similar]
コードポイントが句読点の文字かどうかを調べる 2243
« IntlChar::isprint IntlChar::isspace » PHP Manual IntlChar コードポイントが句読点の文字かどうか ... 読点の文字の場合、 true を返します。そうでない場合、 false を返します。 失敗した場合は、 null を返します。 例 ... の出力は以下となります。 bool(true) bool(true) bool(false) bool(false) 関連キーワード: 文字 , コード , ポイン ...
https://man.plustar.jp/php/intlchar.ispunct.html - [similar]
下位互換性のない変更点 2243
« 新機能 推奨されなくなる機能 » PHP Manual PHP 7.4.x から PHP 8.0.x への移行 下位互換性のない変更 ... すべきなのは、これによって、 0 == "not-a-number" が false と見なされるようになったことです。 比較 変更前 変更 ... "0" true true 0 == "0.0" true true 0 == "foo" true false 0 == "" true false 42 == " 42" true true 42 == "42 ... foo" true false その他の下位互換性のない変更 match が予約語になりま ... inenum ) { if ( error_reporting () == 0 ) { return false ; } // ... } // 以下に置き換えましょう function my ...
https://man.plustar.jp/php/migration80.incompatible.html - [similar]
内部イテレータの現在の要素が子を持つかどうかを調べる 2243
« RecursiveCallbackFilterIterator::getChildren RecursiveDirectoryIterator » PHP Manual Recursive ... 現在の要素が子を持つときに true 、それ以外の場合に false を返します。 パラメータ この関数にはパラメータはあ ... 現在の要素が子を持つときに true 、それ以外の場合に false を返します。 例 例1 RecursiveCallbackFilterIterato ... getExtension (), 'xml' )) { return TRUE ; } return FALSE ; }); ?> 参考 RecursiveCallbackFilterIterator の例 ...
https://man.plustar.jp/php/recursivecallbackfilteriterator.haschildren.html - [similar]
ファイルに書き込む 2243
« SplFileObject::ftruncate SplFileObject::getChildren » PHP Manual SplFileObject ファイルに書き込 ... ::fwrite ( string $data , int $length = 0 ): int | false Writes the contents of string to the file パラメー ... 戻り値 書き込まれるバイト数、もしくはエラーの場合 false を返します。 変更履歴 バージョン 説明 7.4.0 この関 ... 数は、失敗した時に0ではなく false を返すようになりました。 例 例1 SplFileObject::fwr ...
https://man.plustar.jp/php/splfileobject.fwrite.html - [similar]
Transliterator の ID を取得する 2243
« Transliterator::getErrorMessage Transliterator::transliterate » PHP Manual Transliterator Tran ... public static Transliterator::listIDs (): array | false 手続き型 transliterator_list_ids (): array | false ... ransliterator ID の配列を返します。 失敗した場合に false を返します。 例 例1 登録済みの transliterator ID を ...
https://man.plustar.jp/php/transliterator.listids.html - [similar]
collator のロケール名を取得する 2214
« Collator::getErrorMessage Collator::getSortKey » PHP Manual Collator collator のロケール名を取 ... public Collator::getLocale ( int $type ): string | false 手続き型 collator_get_locale ( Collator $object , ... int $type ): string | false collector のロケール名を取得します。 パラメータ ob ... lator のインスタンスの場合やエラーが発生した場合は false を返します。 例 例1 collator_get_locale() の例 <?p ...
https://man.plustar.jp/php/collator.getlocale.html - [similar]
検証 2214
« 例 除去 » PHP Manual 例 検証 検証 例1 filter_var() でのメールアドレスの検証 <?php $email_a = ' ... ar ( $int_a , FILTER_VALIDATE_INT , $options ) !== FALSE ) { echo "整数値 A ' $int_a ' は有効な値 (0 から 3 ... ar ( $int_b , FILTER_VALIDATE_INT , $options ) !== FALSE ) { echo "整数値 B ' $int_b ' は有効な値 (0 から 3 ... ar ( $int_c , FILTER_VALIDATE_INT , $options ) !== FALSE ) { echo "整数値 C ' $int_c ' は有効な値 (0 から 3 ... r ( $int_c , FILTER_VALIDATE_INT , $options )) !== FALSE ) { echo "整数値 C ' $int_c ' は有効な値 (0 から 3 ...
https://man.plustar.jp/php/filter.examples.validation.html - [similar]
ファイルポインタから 1 行取得する 2214
« fgetcsv fgetss » PHP Manual ファイルシステム 関数 ファイルポインタから 1 行取得する fgets (PHP ... esource $stream , ? int $length = null ): string | false ファイルポインタから 1 行取得します。 パラメータ s ... 。ファイルポインタから読み込むデータがもうない場合は false を返します。 エラーが起こった場合、 false を返しま ... p ) { while (( $buffer = fgets ( $fp , 4096 )) !== false ) { echo $buffer ; } if (! feof ( $fp )) { echo "E ...
https://man.plustar.jp/php/function.fgets.html - [similar]