検索

phrase: max: clip:
target: order:
Results of 121 - 130 of about 305 for format (0.059 sec.)
The Vtiful\Kernel\Excel class 4634
« 定義済み定数 Vtiful\Kernel\Excel::addSheet » PHP Manual XLSWriter The Vtiful\Kernel\Excel clas ... , int $column , string int double $data , string $format = ? ) public mergeCells ( string $scope , string $ ... tColumn ( string $range , float $width , resource $format = ? ) public setRow ( string $range , float $heigh ... t , resource $format = ? ) } 目次 Vtiful\Kernel\Excel::addSheet — Vtifu ...
https://man.plustar.jp/php/class.vtiful-kernel-excel.html - [similar]
Returns the group.main value 4634
« SolrQuery::getGroupLimit SolrQuery::getGroupNGroups » PHP Manual SolrQuery Returns the group.m ... the main result list in the response, using group.format=simple 関連キーワード: group , Returns , SolrQuery ... main , the , getGroupMain , result , パラメータ , format , using ...
https://man.plustar.jp/php/solrquery.getgroupmain.html - [similar]
ファイルのグループを変更する 4597
« basename chmod » PHP Manual ファイルシステム 関数 ファイルのグループを変更する chgrp (PHP 4, P ... ループの変更 <?php $filename = 'shared_file.txt' ; $format = "%s's Group ID @ %s: %d\n" ; printf ( $format , ... // filegroup() の結果はキャッシュしない printf ( $format , $filename , date ( 'r' ), filegroup ( $filename ...
https://man.plustar.jp/php/function.chgrp.html - [similar]
ファイルのステータスのキャッシュをクリアする 4597
« chown copy » PHP Manual ファイルシステム 関数 ファイルのステータスのキャッシュをクリアする cle ... id ( $stat [ 'uid' ]); return $user [ 'name' ]; } $format = "UID @ %s: %s\n" ; printf ( $format , date ( 'r' ... er ( $file )); chown ( $file , 'ross' ); printf ( $format , date ( 'r' ), get_owner ( $file )); clearstatcac ... he (); printf ( $format , date ( 'r' ), get_owner ( $file )); ?> 上の例の出 ...
https://man.plustar.jp/php/function.clearstatcache.html - [similar]
直近の操作のエラーテキストを取得する 4597
« MessageFormatter::getErrorCode MessageFormatter::getLocale » PHP Manual MessageFormatter 直近の ... 操作のエラーテキストを取得する MessageFormatter::getErrorMessage msgfmt_get_error_message (PHP ... >= 5.3.0, PHP 7, PHP 8, PECL intl >= 1.0.0) MessageFormatter::getErrorMessage -- msgfmt_get_error_message — ... ストを取得する 説明 オブジェクト指向型 public MessageFormatter::getErrorMessage (): string 手続き型 msgfmt_get ... _error_message ( MessageFormatter $formatter ): string 直近の操作のエラーテキスト ...
https://man.plustar.jp/php/messageformatter.geterrormessage.html - [similar]
Firebird 関数 (PDO_FIREBIRD) 4597
« PDO_DBLIB DSN PDO_FIREBIRD DSN » PHP Manual PDO ドライバ Firebird 関数 (PDO_FIREBIRD) Firebird ... ドライバ名を調べることが可能です。 PDO::FB_ATTR_DATE_FORMAT ( int ) 日付フォーマットを設定します。 PDO::FB_ATT ... R_TIME_FORMAT ( int ) 時刻フォーマットを設定します。 PDO::FB_ATT ... R_TIMESTAMP_FORMAT ( int ) タイムスタンプフォーマットを設定します。 目 ...
https://man.plustar.jp/php/ref.pdo-firebird.html - [similar]
フォーマットされた文字列を出力する 4569
« vfprintf vsprintf » PHP Manual String 関数 フォーマットされた文字列を出力する vprintf (PHP 4 > ... マットされた文字列を出力する 説明 vprintf ( string $format , array $values ): int format に基づき文字列フォー ... ではなく、 配列を引数として受け取ります。 パラメータ format 0個以上のディレクティブで構成されるフォーマット文字 ... ーマットに基づきファイルからの入力を処理する number_format() - 数字を千の位毎にグループ化してフォーマットする ... , 表現 , 出力 , 変換 , 整数 , 精度 , 数値 , 文字 , format , 符号 ...
https://man.plustar.jp/php/function.vprintf.html - [similar]
フォーマットされた文字列を返す 4569
« vprintf wordwrap » PHP Manual String 関数 フォーマットされた文字列を返す vsprintf (PHP 4 >= 4. ... ォーマットされた文字列を返す 説明 vsprintf ( string $format , array $values ): string sprintf() と動作は同じで ... 可変長の引数ではなく配列を引数とします。 パラメータ format 0個以上のディレクティブで構成されるフォーマット文字 ... float e , E , f , F , g , G , h , H values 戻り値 format に基づき、 フォーマットされた文字列の配列を返します ... ーマットに基づきファイルからの入力を処理する number_format() - 数字を千の位毎にグループ化してフォーマットする ...
https://man.plustar.jp/php/function.vsprintf.html - [similar]
はじめに 4569
« dBase インストール/設定 » PHP Manual dBase はじめに はじめに 注意 : この拡張モジュールは » PEC ... ctions allow you to access records stored in dBase-format (dbf) databases. 警告 We recommend against using d ... ta to and from your web database, because the file format is commonly understood by Windows spreadsheets and ... le are: Available types of fields Field dBase Type Format Additional information M Memo n/a This type is not ...
https://man.plustar.jp/php/intro.dbase.html - [similar]
ビット演算子 4569
« 代入演算子 比較演算子 » PHP Manual 演算子 ビット演算子 ビット演算子 ビット演算子は、整数値の特 ... んに結果をきれいに表示させるためだけのものです。 */ $format = '(%1$2d = %1$04b) = (%2$2d = %2$04b)' . ' %3$s ( ... as $value ) { $result = $value & $test ; printf ( $format , $result , $value , '&' , $test ); } echo "\n Bit ... as $value ) { $result = $value | $test ; printf ( $format , $result , $value , '|' , $test ); } echo "\n Bit ... as $value ) { $result = $value ^ $test ; printf ( $format , $result , $value , '^' , $test ); } ?> 上の例の出 ...
https://man.plustar.jp/php/language.operators.bitwise.html - [similar]