検索

phrase: max: clip:
target: order:
Results of 21 - 30 of about 291 for length (0.006 sec.)
文字列の一部分を返す 6549
« substr_replace trim » PHP Manual String 関数 文字列の一部分を返す substr (PHP 4, PHP 5, PHP 7, ... 説明 substr ( string $string , int $offset , ? int $length = null ): string 文字列 string の、 offset で指定さ ... れた位置から length バイト分の文字列を返します。 パラメータ string 入力 ... = substr ( "abcdef" , - 3 , 1 ); // "d" を返す ?> length length が指定され、かつ正である場合、 返される文字 ... 列は offset ( string の長さに依存します) から数えて length 文字数分となります。 length が指定され、かつ負であ ...
https://man.plustar.jp/php/function.substr.html - [similar]
暗号 iv の長さを取得 6511
« OpenSSL 関数 openssl_cms_decrypt » PHP Manual OpenSSL 関数 暗号 iv の長さを取得 openssl_cipher ... _iv_length (PHP 5 >= 5.3.3, PHP 7, PHP 8) openssl_cipher_iv_l ... ngth — 暗号 iv の長さを取得 説明 openssl_cipher_iv_length ( string $cipher_algo ): int | false 暗号初期化ベク ... ベルのエラーを発生します。 例 例1 openssl_cipher_iv_length() の例 <?php $method = 'AES-128-CBC' ; $ivlen = op ... enssl_cipher_iv_length ( $method ); echo $ivlen ; ?> 上の例の出力は、 たと ...
https://man.plustar.jp/php/function.openssl-cipher-iv-length.html - [similar]
表示される長さを返す 6511
« pg_field_num pg_field_size » PHP Manual PostgreSQL 関数 表示される長さを返す pg_field_prtlen ( ... ); echo "fieldname: $fieldname \n" ; echo "printed length: " . pg_field_prtlen ( $res , $fieldname ) . " cha ... racters\n" ; echo "storage length: " . pg_field_size ( $res , $j ) . " bytes\n" ; ec ... 以下となります。 column 0 fieldname: author printed length: 6 characters storage length: -1 bytes field type: ... varchar column 1 fieldname: year printed length: 4 characters storage length: 2 bytes field type: ...
https://man.plustar.jp/php/function.pg-field-prtlen.html - [similar]
結果セットのフィールド情報をオブジェクトの配列で返す 6473
« mysqli_result::fetch_field mysqli_result::fetch_object » PHP Manual mysqli_result 結果セットの ... リアスが指定されている場合の、本来のテーブル名。 max_length 結果セットにおけるフィールドの最大幅。 length テー ... > table ); printf ( "Max. Len: %d\n" , $val -> max_length ); printf ( "Length: %d\n" , $val -> length ); pri ... > table ); printf ( "Max. Len: %d\n" , $val -> max_length ); printf ( "Length: %d\n" , $val -> length ); pri ... ========== Name: actor_id Table: actor Max. Len: 3 Length: 5 charsetnr: 63 Flags: 49699 Type: 2 Name: last_n ...
https://man.plustar.jp/php/mysqli-result.fetch-fields.html - [similar]
配列の一部を削除し、他の要素で置換する 6435
« array_slice array_sum » PHP Manual 配列 関数 配列の一部を削除し、他の要素で置換する array_spli ... rray_splice ( array &$array , int $offset , ? int $length = null , mixed $replacement = [] ): array 配列 arr ... ay から offset および length で指定された要素を削除し、配列 replacement でそれを ... 部分は、 array の末尾から数えた位置からとなります。 length length が省略された場合、 offset から配列の最後まで ... が全て削除されます。 length が指定され、正の場合、複数の要素が削除されます。 負 ...
https://man.plustar.jp/php/function.array-splice.html - [similar]
バイナリ IPTC データを JPEG イメージに埋めこむ 6435
« imagexbm iptcparse » PHP Manual GD および Image 関数 バイナリ IPTC データを JPEG イメージに埋め ... unction iptc_make_tag ( $rec , $data , $value ) { $length = strlen ( $value ); $retval = chr ( 0x1C ) . chr ... ( $rec ) . chr ( $data ); if( $length < 0x8000 ) { $retval .= chr ( $length >> 8 ) . chr ... ( $length & 0xFF ); } else { $retval .= chr ( 0x80 ) . chr ( ... 0x04 ) . chr (( $length >> 24 ) & 0xFF ) . chr (( $length >> 16 ) & 0xFF ) ...
https://man.plustar.jp/php/function.iptcembed.html - [similar]
Get the maximum length of the specified field 6158
« cubrid_field_flags cubrid_field_name » PHP Manual CUBRID MySQL 互換関数 Get the maximum length ... UBRID >= 8.3.0) cubrid_field_len — Get the maximum length of the specified field 説明 cubrid_field_len ( res ... ld_offset ): int This function returns the maximum length of the specified field on success, or it returns F ... of level E_WARNING is also issued. 戻り値 Maximum length, when process is successful. false on failure. 例 ... r 3 medal char 1 game_date date 10 関連キーワード: length , maximum , specified , Get , cubrid , the , of , ...
https://man.plustar.jp/php/function.cubrid-field-len.html - [similar]
文字列を配列に変換する 6158
« str_shuffle str_starts_with » PHP Manual String 関数 文字列を配列に変換する str_split (PHP 5, ... 列に変換する 説明 str_split ( string $string , int $length = 1 ): array 文字列を配列に変換します。 パラメータ ... string 入力文字列。 length 分割した部分の最大長。 戻り値 オプションのパラメー ...length が指定されている場合、 返される配列の各要素は、 le ... それ以外の場合、1 文字ずつ分割された配列となります。 length が 1 より小さい場合に false を返します。 length...
https://man.plustar.jp/php/function.str-split.html - [similar]
文字列の一部を置換する 6158
« substr_count substr » PHP Manual String 関数 文字列の一部を置換する substr_replace (PHP 4, PHP ... eplace , array | int $offset , array | int | null $length = null ): string | array substr_replace() は、文字 ... 列 string の offset および (オプションの) length パラメータで区切られた部分を replace で指定した文字 ... この場合、他のパラメータ replace 、 offset および length がスカラ値なら それを各入力文字列に順次適用し、配列 ... tring の終端から offset 番目の文字から始まります。 length 正の値を指定した場合、 string の置換される部分の長 ...
https://man.plustar.jp/php/function.substr-replace.html - [similar]
Returns an copy of a subset of the train data 6120
« fann_shuffle_train_data fann_test_data » PHP Manual Fann 関数 Returns an copy of a subset of t ... bset_train_data ( resource $data , int $pos , int $length ): resource Returns an copy of a subset of the tra ... in data resource , starting at position pos and length elements forward. The fann_subset_train_data(train ... _data, 0, fann_length_train_data(train_data)) do the same as fann_duplic ... ワークトレーニングリソース。 pos Starting position. length The number of copied elements. 戻り値 成功した場合 ...
https://man.plustar.jp/php/function.fann-subset-train-data.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 NEXT