検索

phrase: max: clip:
target: order:
Results of 11 - 20 of about 46 for subject (0.003 sec.)
メッセージヘッダを読み込む 8833
« imap_header imap_headers » PHP Manual IMAP 関数 メッセージヘッダを読み込む imap_headerinfo (PH ... p , int $message_num , int $from_length = 0 , int $subject_length = 0 ): stdClass | false 指定したメッセージ番 ... プロパティの文字数。 ゼロ以上でなければなりません。 subject_length fetchsubject プロパティの文字数。 ゼロ以上で ... ヘッダにあるメッセージの日付。 Date - date と同じ。 subject - メッセージの件名。 Subject - subject と同じ。 in ... from 行を from_length 文字に適合させたもの。 fetchsubject - subject 行を subject_length 文字に適合させたもの ...
https://man.plustar.jp/php/function.imap-headerinfo.html - [similar]
大文字小文字を区別しない str_replace 8711
« str_getcsv str_pad » PHP Manual String 関数 大文字小文字を区別しない str_replace str_ireplace ... search , array | string $replace , string | array $subject , int &$count = null ): string | array この関数は、 ... subject の中に現れるすべての search (大文字小文字を区別しな ... lace() はそれぞれの配列から取り出した 値を使用して subject の置換を行います。 replace の要素数が search より少 ... 。 配列を使えば、複数の値を指定することもできます。 subject 検索・置換の対象となる文字列あるいは配列。 haystac ...
https://man.plustar.jp/php/function.str-ireplace.html - [similar]
SplObserver インターフェイス 8467
« ArrayObject::unserialize SplObserver::update » PHP Manual その他のクラスおよびインターフェイス ... PHP 8) はじめに SplObserver インターフェイスを SplSubject とともに使うと、Observer パターンを実装することがで ... ce SplObserver { /* メソッド */ public update ( SplSubject $subject ): void } 目次 SplObserver::update — subj ... を受信する 関連キーワード: SplObserver , update , SplSubject , subject , ArrayObject , unserialize , クラス , パ ...
https://man.plustar.jp/php/class.splobserver.html - [similar]
MIME ヘッダフィールドを作成する 8406
« iconv_mime_decode iconv_set_encoding » PHP Manual iconv 関数 MIME ヘッダフィールドを作成する i ... 成し、返します。 これは以下のような形式になります。 Subject: =?ISO-8859-1?Q?Pr=FCfung_f=FCr?= Entwerfen von ei ... ner MIME kopfzeile 上の例では "Subject" がフィールド名、"=?ISO-8859-1?..." で始まる部分が ... ; $preferences [ "scheme" ] = "Q" ; // この結果は "Subject: =?UTF-8?Q?Pr=C3=BCfung=20Pr=C3=BCfung?=" となりま ... す。 echo iconv_mime_encode ( "Subject" , "Prüfung Prüfung" , $preferences ); $preference ...
https://man.plustar.jp/php/function.iconv-mime-encode.html - [similar]
正規表現検索を行い、コールバック関数を使用して置換を行う 8406
« preg_replace_callback_array preg_replace » PHP Manual PCRE 関数 正規表現検索を行い、コールバッ ... ay $pattern , callable $callback , string | array $subject , int $limit = -1 , int &$count = null , int $flag ... ]); }, $line ); echo $line ; } fclose ( $fp ); ?> subject 文字列あるいは文字列の配列で、 検索および置換の対象 ... となる文字列を指定します。 limit subject 文字列における 各パターンの最大置換回数。デフォルト ... 照してください。 戻り値 preg_replace_callback() は、 subject が配列の場合には配列を、 それ以外の場合は文字列を返 ...
https://man.plustar.jp/php/function.preg-replace-callback.html - [similar]
コメント 8345
« 条件付きサブパターン 再帰的パターン » PHP Manual PCRE 正規表現構文 コメント コメント コメントは ... ります。 例1 パターンの中でのコメントの使い方 <?php $subject = 'test' ; /* PCRE_EXTENDED を有効にせずにコメント ... h = preg_match ( '/te(?# this is a comment)st/' , $subject ); var_dump ( $match ); /* 空白文字と # は、PCRE_E ... われます */ $match = preg_match ( '/te #~~~~ st/' , $subject ); var_dump ( $match ); /* PCRE_EXTENDED が有効な場 ... れます */ $match = preg_match ( '/te #~~~~ st/x' , $subject ); var_dump ( $match ); 上の例の出力は以下となりま ...
https://man.plustar.jp/php/regexp.reference.comments.html - [similar]
Creative Commons Attribution 3.0 8039
« 翻訳 索引 » PHP Manual 付録 Creative Commons Attribution 3.0 Creative Commons Attribution 3.0 ... ances, phonograms or broadcasts, or other works or subject matter other than works listed in Section 1(f) bel ... ht law or other applicable laws. 3. License Grant. Subject to the terms and conditions of this License, Licen ... to exercise the rights in other media and formats. Subject to Section 8(f), all rights not expressly granted ... cense granted in Section 3 above is expressly made subject to and limited by the following restrictions: You ...
https://man.plustar.jp/php/cc.license.html - [similar]
正規表現で文字列を分割する 7490
« preg_replace ssdeep » PHP Manual PCRE 関数 正規表現で文字列を分割する preg_split (PHP 4, PHP 5 ... 分割する 説明 preg_split ( string $pattern , string $subject , int $limit = -1 , int $flags = 0 ): array | fals ... パラメータ pattern 検索するパターンを表す文字列。 subject 入力文字列。 limit これを指定した場合、最大 limit ... となり、配列の要素 0 はマッチした文字列、 要素 1 は subject におけるマッチした文字列のオフセット値となることに ... ください。 戻り値 pattern にマッチした境界で分割した subject の部分文字列の配列を返します。失敗した場合に false ...
https://man.plustar.jp/php/function.preg-split.html - [similar]
CSR をファイルにエクスポートする 7429
« openssl_cms_verify openssl_csr_export » PHP Manual OpenSSL 関数 CSR をファイルにエクスポートす ... た。 例 例1 openssl_csr_export_to_file() の例 <?php $subject = array( "commonName" => "example.com" , ); $priva ... PENSSL_KEYTYPE_RSA , )); $csr = openssl_csr_new ( $subject , $private_key , array( 'digest_alg' => 'sha384' ) ... vate_key , 'example-priv.key' ); // Along with the subject, the CSR contains the public key corresponding to ...
https://man.plustar.jp/php/function.openssl-csr-export-to-file.html - [similar]
繰り返し正規表現検索を行う 7368
« preg_last_error preg_match » PHP Manual PCRE 関数 繰り返し正規表現検索を行う preg_match_all (P ... 行う 説明 preg_match_all ( string $pattern , string $subject , array &$matches = null , int $flags = 0 , int $o ... ffset = 0 ): int | false subject を検索し、 pattern に指定した正規表現にマッチした ... パラメータ pattern 検索するパターンを表す文字列。 subject 入力文字列。 matches マッチしたすべての内容を含む、 ... で一致した文字列 およびその文字列のオフセット 1 での subject へのオフセットからなります。 <?php preg_match_all ...
https://man.plustar.jp/php/function.preg-match-all.html - [similar]
PREV 1 2 3 4 5 NEXT