検索

phrase: max: clip:
target: order:
Results of 31 - 40 of about 223 for utf (0.018 sec.)
Parle pattern matching 5613
« 定義済み定数 Character representations » PHP Manual Parle Parle pattern matching Parle pattern ... rently not enabled by default, pass --enable-parle-utf32 to make them available. A particular encoding ca ... . For example, to match the EURO symbol encoded in UTF-8, the regular expression [\xe2][\x82][\xac] can b ... e used. The pattern for an UTF-8 encoded string could be [ -\x7f]{+}[\x80-\xbf]{+ ...
https://man.plustar.jp/php/parle.pattern.matching.html - [similar]
数値から、1バイトの文字列を生成する 5468
« chop chunk_split » PHP Manual String 関数 数値から、1バイトの文字列を生成する chr (PHP 4, PHP ... ring のエンコーディングについて知りませんし、 特に UTF-8 や UTF-16 のようなマルチバイトエンコーディングに ... 例の出力は以下となります。 aA 例3 個別のバイトから、UTF-8 文字列を組み立てる <?php $str = chr ( 240 ) . ch ...
https://man.plustar.jp/php/function.chr.html - [similar]
htmlspecialchars および htmlentities で使用される変換テーブルを返す 5468
« fprintf hebrev » PHP Manual String 関数 htmlspecialchars および htmlentities で使用される変換テ ... ENT_SUBSTITUTE | ENT_HTML401 , string $encoding = "UTF-8" ): array get_html_translation_table() は、 html ... を返すのではなく Unicode の置換文字に置き換えます。 UTF-8 の場合は U+FFFD、それ以外の場合は &#FFFD; となり ... 用するエンコーディング。省略した場合のデフォルト値は UTF-8 となります。 以下の文字セットをサポートします。 ... ロ記号やフランス・フィンランドの文字を追加したもの。 UTF-8 ASCII 互換のマルチバイト 8 ビット Unicode 。 cp8 ...
https://man.plustar.jp/php/function.get-html-translation-table.html - [similar]
notification コンテキストパラメータ用のコールバック関数 5468
« stream_isatty stream_register_wrapper » PHP Manual ストリーム 関数 notification コンテキストパ ... nnected... Found the mime-type: text/html; charset=utf-8 Being redirected to: http://no.php.net/contact C ... ilesize: 0 Found the mime-type: text/html; charset=utf-8 Being redirected to: http://no.php.net/contact.p ... esize: 4589 Found the mime-type: text/html;charset=utf-8 Made some progress, downloaded 0 so far Made som ... ります。 Connected... Mime-type: text/html; charset=utf-8 Being redirected to: http://no2.php.net/distribu ...
https://man.plustar.jp/php/function.stream-notification-callback.html - [similar]
基本的な使用法 5468
« 例 Collator » PHP Manual 例 基本的な使用法 基本的な使用法 各モジュールには、 手続き型とオブジェ ... キュメントで説明します。 注意 : 入力文字列は、すべて UTF-8 でエンコードされていなければなりません。 出力文字 ... 列も、すべて UTF-8 となります。 例1 手続き型 API の使用例 <?php $co ...
https://man.plustar.jp/php/intl.examples.basic.html - [similar]
定義済み定数 5468
« リソース型 JsonException » PHP Manual JSON 定義済み定数 定義済み定数 以下の定数が定義されていま ... JSON_ERROR_SYNTAX ( int ) 構文エラー。 JSON_ERROR_UTF8 ( int ) 正しくエンコードされていないなど、不正な形 ... 式の UTF-8 文字。 JSON_ERROR_RECURSION ( int ) json_encode( ... 0000 から始まるキーが含まれていました。 JSON_ERROR_UTF16 ( int ) json_decode() に渡された JSON 文字列の中 ... に、 単一の、ペアになっていない UTF-16 のサロゲートコードポイントが含まれていました。 ...
https://man.plustar.jp/php/json.constants.html - [similar]
文字エンコーディング 5468
« エラーコード 例 » PHP Manual XML パーサ 文字エンコーディング 文字エンコーディング PHPのXML拡張 ... ります。 PHP におけるドキュメントの内部表現は、常に UTF-8 でエンコードされます。 ソースエンコーディングは、 ... るソースエンコーディングは、 ISO-8859-1 , US-ASCII , UTF-8 です。前の二つは、シングルバイトエンコー ディング ... 文字がシングルバイトで表現されることを意 味します。 UTF-8 は、1から4バイトの可変ビット 数(最大21ビット)で構 ...
https://man.plustar.jp/php/xml.encoding.html - [similar]
新しい DOMCdataSection オブジェクトを作成する 5426
« DOMCdataSection DOMCharacterData » PHP Manual DOMCdataSection 新しい DOMCdataSection オブジェク ... ェクトの作成 <?php $dom = new DOMDocument ( '1.0' , 'utf-8' ); $element = $dom -> appendChild (new DOMEleme ... 出力は以下となります。 <?xml version="1.0" encoding="utf-8"?> <root><![CDATA[root value]]></root> 参考 DOMT ...
https://man.plustar.jp/php/domcdatasection.construct.html - [similar]
XML 名前空間の使用 5426
« 単純な XML ドキュメントの作成 オブジェクト指向 API の使用 » PHP Manual 例 XML 名前空間の使用 X ... , ' ' ); xmlwriter_start_document ( $xw , '1.0' , 'UTF-8' ); // 最初の要素 xmlwriter_start_element_ns ( $ ... 出力は以下となります。 <?xml version="1.0" encoding="UTF-8"?> <prefix:books isbn="" prefix:isbn="" xmlns:pr ...
https://man.plustar.jp/php/example.xmlwriter-namespace.html - [similar]
ある文字エンコーディングの文字列を、別の文字エンコーディングに変換する 5426
« iconv_substr ob_iconv_handler » PHP Manual iconv 関数 ある文字エンコーディングの文字列を、別の ... , $text , PHP_EOL ; echo 'TRANSLIT : ' , iconv ( "UTF-8" , "ISO-8859-1//TRANSLIT" , $text ), PHP_EOL ; e ... cho 'IGNORE : ' , iconv ( "UTF-8" , "ISO-8859-1//IGNORE" , $text ), PHP_EOL ; ech ... o 'Plain : ' , iconv ( "UTF-8" , "ISO-8859-1" , $text ), PHP_EOL ; ?> 上の例の ...
https://man.plustar.jp/php/function.iconv.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 NEXT