Results of 1 - 10 of about 281 for PARSE (0.007 sec.)
- URL を解釈し、その構成要素を返す 9281
- « http_build_query rawurldecode » PHP Manual URL 関数 URL を解釈し、その構成要素を返す parse_url
...
(PHP 4, PHP 5, PHP 7, PHP 8) parse_url — URL を解釈し、その構成要素を返す 説明 parse_ ...
URL であっても受け入れますし、 そのような場合でも parse_url() は可能な限り 正しく解析しようとします。 パラ ...
ます。 戻り値 完全におかしな形式の URL については、 parse_url() は false を返します。 component を省略した場 ...
ッシュマーク # 以降 component が指定されている場合、 parse_url() は配列ではなく文字列 ( PHP_URL_PORT の場合は ...
-
https://man.plustar.jp/php/function.parse-url.html
- [similar]
- 数値をパースする 8720
- « NumberFormatter::parseCurrency NumberFormatter::setAttribute » PHP Manual NumberFormatter 数値
...
をパースする NumberFormatter::parse numfmt_parse (PHP 5 >= 5.3.0, PHP 7, PHP 8, PECL i ...
ntl >= 1.0.0) NumberFormatter::parse -- numfmt_parse — 数値をパースする 説明 オブジェク ...
ト指向型 public NumberFormatter::parse ( string $string , int $type = NumberFormatter::TY ...
fset = null ): int | float | false 手続き型 numfmt_parse ( NumberFormatter $formatter , string $string , in ...
-
https://man.plustar.jp/php/numberformatter.parse.html
- [similar]
- IntlDateFormatter で使用する寛大さを取得する 8682
- « IntlDateFormatter::getTimeZone IntlDateFormatter::localtime » PHP Manual IntlDateFormatter Int
...
{ echo 'TRUE' ; } else { echo 'FALSE' ; } datefmt_parse ( $fmt , '35/13/1971' ); echo "\n Trying to do par ...
se('35/13/1971').\nResult is : " . datefmt_parse ( $fmt , '35/13/1971' ); if ( intl_get_error_code ...
{ echo 'TRUE' ; } else { echo 'FALSE' ; } datefmt_parse ( $fmt , '35/13/1971' ); echo "\n Trying to do par ...
se('35/13/1971').Result is : " . datefmt_parse ( $fmt , '35/13/1971' ); if ( intl_get_error_code ...
-
https://man.plustar.jp/php/intldateformatter.islenient.html
- [similar]
- Parses an response XML string into a SolrObject 8556
- « SolrUtils SolrUtils::escapeQueryChars » PHP Manual SolrUtils Parses an response XML string int
...
PECL solr >= 0.9.2) SolrUtils::digestXmlResponse — Parses an response XML string into a SolrObject 説明 pub ...
ls::digestXmlResponse ( string $xmlresponse , int $parse_mode = 0 ): SolrObject This method parses an respo ...
onse The XML response string from the Solr server. parse_mode Use SolrResponse::PARSE_SOLR_OBJ or SolrRespo ...
nse::PARSE_SOLR_DOC 戻り値 Returns the SolrObject representin ...
-
https://man.plustar.jp/php/solrutils.digestxmlresponse.html
- [similar]
- パーサの寛大さを設定する 8469
- « IntlDateFormatter::setCalendar IntlDateFormatter::setPattern » PHP Manual IntlDateFormatter パ
...
{ echo 'TRUE' ; } else { echo 'FALSE' ; } datefmt_parse ( $fmt , '35/13/1971' ); echo "\n Trying to do par ...
se('35/13/1971').\nResult is : " . datefmt_parse ( $fmt , '35/13/1971' ); if ( intl_get_error_code ...
{ echo 'TRUE' ; } else { echo 'FALSE' ; } datefmt_parse ( $fmt , '35/13/1971' ); echo "\nTrying to do pars ...
e('35/13/1971').\nResult is : " . datefmt_parse ( $fmt , '35/13/1971' ); if ( intl_get_error_code ...
-
https://man.plustar.jp/php/intldateformatter.setlenient.html
- [similar]
- パターンを使用して入力文字列をパースする 8344
- « MessageFormatter::parseMessage MessageFormatter::setPattern » PHP Manual MessageFormatter パタ
...
ンを使用して入力文字列をパースする MessageFormatter::parse msgfmt_parse (PHP 5 >= 5.3.0, PHP 7, PHP 8, PECL i ...
ntl >= 1.0.0) MessageFormatter::parse -- msgfmt_parse — パターンを使用して入力文字列をパ ...
る 説明 オブジェクト指向型 public MessageFormatter::parse ( string $string ): array | false 手続き型 msgfmt_ ...
ーが発生した場合は false を返します。 例 例1 msgfmt_parse() の例 <?php $fmt = msgfmt_create ( 'en_US' , "{0, ...
-
https://man.plustar.jp/php/messageformatter.parse.html
- [similar]
- 指定した日付/時刻の詳細な情報を連想配列で返す 7706
- « date_parse_from_format date_sub » PHP Manual 日付・時刻 関数 指定した日付/時刻の詳細な情報を連
...
想配列で返す date_parse (PHP 5 >= 5.2.0, PHP 7, PHP 8) date_parse — 指定し ...
た日付/時刻の詳細な情報を連想配列で返す 説明 date_parse ( string $datetime ): array date_parse() は、 strt ...
ます。 例 例1 datetime に包括的な情報を指定した date_parse() の例 <?php var_dump ( date_parse ( "2006-12-12 1 ...
れます。 例2 タイムゾーンの省略形を与えた場合の date_parse() の例 <?php var_dump ( date_parse ( "June 2nd, 20 ...
-
https://man.plustar.jp/php/function.date-parse.html
- [similar]
- 文字列を処理し、変数に代入する 7668
- « ord print » PHP Manual String 関数 文字列を処理し、変数に代入する parse_str (PHP 4, PHP 5, PHP
...
7, PHP 8) parse_str — 文字列を処理し、変数に代入する 説明 parse_st ...
.0 result は、オプションではなくなりました。 7.2.0 parse_str() 関数を 第二引数を指定せずに使うと E_DEPRECAT ...
ED レベルの警告が発生するようになりました。 例 例1 parse_str() の使用法 <?php $str = "first=value&arr[]=foo ...
+bar&arr[]=baz" ; // 推奨 parse_str ( $str , $output ); echo $output [ 'first' ]; ...
-
https://man.plustar.jp/php/function.parse-str.html
- [similar]
- 文字列をパースしてタイムスタンプにする 7320
- « IntlDateFormatter::localtime IntlDateFormatter::setCalendar » PHP Manual IntlDateFormatter 文字
...
をパースしてタイムスタンプにする IntlDateFormatter::parse datefmt_parse (PHP 5 >= 5.3.0, PHP 7, PHP 8, PECL ...
intl >= 1.0.0) IntlDateFormatter::parse -- datefmt_parse — 文字列をパースしてタイムスタンプ ...
説明 オブジェクト指向型 public IntlDateFormatter::parse ( string $string , int &$offset = null ): int | fl ...
oat | false 手続き型 datefmt_parse ( IntlDateFormatter $formatter , string $string , ...
-
https://man.plustar.jp/php/intldateformatter.parse.html
- [similar]
- Specifies the maximum number of tokens to parse 7156
- « SolrQuery::setMltMaxNumQueryTerms SolrQuery::setMltMaxWordLength » PHP Manual SolrQuery Specif
...
ies the maximum number of tokens to parse SolrQuery::setMltMaxNumTokens (PECL solr >= 0.9.2) ...
Tokens — Specifies the maximum number of tokens to parse 説明 public SolrQuery::setMltMaxNumTokens ( int $v ...
olrQuery Specifies the maximum number of tokens to parse in each example doc field that is not stored with ...
. パラメータ value The maximum number of tokens to parse 戻り値 Returns the current SolrQuery object, if th ...
-
https://man.plustar.jp/php/solrquery.setmltmaxnumtokens.html
- [similar]