検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 27 for タイトル (0.024 sec.)
現在のプロセスのタイトルを返す 12146
« assert cli_set_process_title » PHP Manual PHP オプション/情報 関数 現在のプロセスのタイトルを返 ... 7, PHP 8) cli_get_process_title — 現在のプロセスのタイトルを返す 説明 cli_get_process_title (): ? string 現在の ... プロセスのタイトルを返します。これは cli_set_process_title() で設定した ... ものです。 これは、 ps や top で表示されるタイトルと必ずしも一致するとは限りません。OS に依存します。 ... にはパラメータはありません。 戻り値 現在のプロセスのタイトルを文字列で返します。エラー時には null を返します。 エ ...
https://man.plustar.jp/php/function.cli-get-process-title.html - [similar]
プロセスのタイトルを設定する 12030
« cli_get_process_title dl » PHP Manual PHP オプション/情報 関数 プロセスのタイトルを設定する cl ... 0, PHP 7, PHP 8) cli_set_process_title — プロセスのタイトルを設定する 説明 cli_set_process_title ( string $titl ... e ): bool プロセスのタイトルを設定します。これは top や ps といったツールで表示さ ... LI モードでしか使えません。 パラメータ title 新しいタイトル。 戻り値 成功した場合に true を、失敗した場合に fal ... " ; $pid = getmypid (); // これを使えば、プロセスのタイトルを ps で確認できます if (! cli_set_process_title ( $ ...
https://man.plustar.jp/php/function.cli-set-process-title.html - [similar]
コードポイントがタイトルケース文字であるかを調べる 11586
« IntlChar::isspace IntlChar::isUAlphabetic » PHP Manual IntlChar コードポイントがタイトルケース ... (PHP 7, PHP 8) IntlChar::istitle — コードポイントがタイトルケース文字であるかを調べる 説明 public static IntlCh ... int | string $codepoint ): ? bool コードポイントがタイトルケース文字であるかを判定します。 一般カテゴリ "Lt" ( ... ドされた文字 (例: "\u{2603}" )。 戻り値 codepoint がタイトルケース文字である場合に、 true を返します。 そうでない ... かどうかを調べる IntlChar::totitle() - Unicode 文字をタイトルケースにする 関連キーワード: コード , 文字 , ポイント ...
https://man.plustar.jp/php/intlchar.istitle.html - [similar]
タイトル文字の区切り用にイテレータを作る 10171
« IntlBreakIterator::createSentenceInstance IntlBreakIterator::createWordInstance » PHP Manual I ... ntlBreakIterator タイトル文字の区切り用にイテレータを作る IntlBreakIterator:: ... 7, PHP 8) IntlBreakIterator::createTitleInstance — タイトル文字の区切り用にイテレータを作る 説明 public static ... ています。 パラメータ locale 戻り値 関連キーワード: タイトル , 区切り , 文字 , IntlBreakIterator , createTitleI ...
https://man.plustar.jp/php/intlbreakiterator.createtitleinstance.html - [similar]
Unicode 文字をタイトルケースにする 10171
« IntlChar::tolower IntlChar::toupper » PHP Manual IntlChar Unicode 文字をタイトルケースにする I ... e (PHP 7, PHP 8) IntlChar::totitle — Unicode 文字をタイトルケースにする 説明 public static IntlChar::totitle ( ... point ): int | string | null 指定した文字を、同等のタイトルケースにマップします。 同等のタイトルケースが存在しな ... ォールディングを行う 関連キーワード: 文字 , ケース , タイトル , IntlChar , string , int , ポイント , コード , 存 ...
https://man.plustar.jp/php/intlchar.totitle.html - [similar]
内部の XML ツリーを文字列として出力する 9973
« DOMDocument::saveHTMLFile DOMDocument::schemaValidate » PHP Manual DOMDocument 内部の XML ツリ ... $title ); $text = $doc -> createTextNode ( 'これはタイトルです' ); $text = $title -> appendChild ( $text ); ec ... 存します\n" ; echo $doc -> saveXML () . "\n" ; echo "タイトルの部分のみを保存します\n" ; echo $doc -> saveXML ( $ ... 保存します <?xml version="1.0"?> <book> <title>これはタイトルです</title> </book> タイトルの部分のみを保存します ... <title>これはタイトルです</title> 参考 DOMDocument::save() - 内部の XML ツ ...
https://man.plustar.jp/php/domdocument.savexml.html - [similar]
国際化関数 9891
« ob_iconv_handler はじめに » PHP Manual 自然言語および文字エンコーディング 国際化関数 国際化関数 ... ータを作る IntlBreakIterator::createTitleInstance — タイトル文字の区切り用にイテレータを作る IntlBreakIterator:: ... であるかを調べる IntlChar::istitle — コードポイントがタイトルケース文字であるかを調べる IntlChar::isUAlphabetic — ... 文字を小文字にする IntlChar::totitle — Unicode 文字をタイトルケースにする IntlChar::toupper — Unicode 文字を大文字 ...
https://man.plustar.jp/php/book.intl.html - [similar]
関数・メソッド 8146
« 索引 サンプル » PHP Manual 索引 関数・メソッド 関数・メソッド マニュアル内の全関数およびメソッ ... ンストラクタ cli_get_process_title - 現在のプロセスのタイトルを返す cli_set_process_title - プロセスのタイトルを設 ...
https://man.plustar.jp/php/indexes.functions.html - [similar]
リモートファイルの使用 7867
« 参考 接続処理 » PHP Manual 機能 リモートファイルの使用 リモートファイルの使用 php.ini で allow ... せて出力 を行うことが可能です。 例1 リモートページのタイトルを得る <?php $file = fopen ( "http://www.example.com ... of ( $file )) { $line = fgets ( $file , 1024 ); /* タイトルとタグが同じ行にある場合のみ動作します。 */ if ( pre ...
https://man.plustar.jp/php/features.remote-files.html - [similar]
PHP オプションと情報 7504
« output_reset_rewrite_vars はじめに » PHP Manual PHP の振る舞いの変更 PHP オプションと情報 PHP ... うかを調べる cli_get_process_title — 現在のプロセスのタイトルを返す cli_set_process_title — プロセスのタイトルを設 ...
https://man.plustar.jp/php/book.info.html - [similar]
PREV 1 2 3 NEXT