mirror of
https://github.com/php/doc-ja.git
synced 2026-04-27 18:13:11 +02:00
102 lines
3.2 KiB
XML
102 lines
3.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- $Revision$ -->
|
|
<!-- EN-Revision: 426d9a8f156bca7be9cb5475e24ba104ee814bc1 Maintainer: mumumu Status: ready -->
|
|
<refentry xml:id="function.sapi-windows-cp-conv" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
<refnamediv>
|
|
<refname>sapi_windows_cp_conv</refname>
|
|
<refpurpose>文字列のコードページを別のものに変換する</refpurpose>
|
|
</refnamediv>
|
|
|
|
<refsect1 role="description"><!-- {{{ -->
|
|
&reftitle.description;
|
|
<methodsynopsis>
|
|
<type class="union"><type>string</type><type>null</type></type><methodname>sapi_windows_cp_conv</methodname>
|
|
<methodparam><type class="union"><type>int</type><type>string</type></type><parameter>in_codepage</parameter></methodparam>
|
|
<methodparam><type class="union"><type>int</type><type>string</type></type><parameter>out_codepage</parameter></methodparam>
|
|
<methodparam><type>string</type><parameter>subject</parameter></methodparam>
|
|
</methodsynopsis>
|
|
<para>
|
|
文字列のコードページを別のものに変換します。
|
|
</para>
|
|
</refsect1><!-- }}} -->
|
|
|
|
<refsect1 role="parameters"><!-- {{{ -->
|
|
&reftitle.parameters;
|
|
<variablelist>
|
|
<varlistentry>
|
|
<term><parameter>in_codepage</parameter></term>
|
|
<listitem>
|
|
<para>
|
|
<parameter>subject</parameter> 文字列のコードページ。
|
|
コードページの名前、または識別子を指定します。
|
|
</para>
|
|
</listitem>
|
|
</varlistentry>
|
|
<varlistentry>
|
|
<term><parameter>out_codepage</parameter></term>
|
|
<listitem>
|
|
<para>
|
|
<parameter>subject</parameter> を文字列が変換されるコードページ。
|
|
コードページの名前、または識別子を指定します。
|
|
</para>
|
|
</listitem>
|
|
</varlistentry>
|
|
<varlistentry>
|
|
<term><parameter>subject</parameter></term>
|
|
<listitem>
|
|
<para>
|
|
変換する文字列。
|
|
</para>
|
|
</listitem>
|
|
</varlistentry>
|
|
</variablelist>
|
|
</refsect1><!-- }}} -->
|
|
|
|
<refsect1 role="returnvalues"><!-- {{{ -->
|
|
&reftitle.returnvalues;
|
|
<para>
|
|
<parameter>out_codepage</parameter> に変換された <parameter>subject</parameter> 文字列。
|
|
失敗した場合は &null; を返します。
|
|
</para>
|
|
</refsect1><!-- }}} -->
|
|
|
|
<refsect1 role="errors"><!-- {{{ -->
|
|
&reftitle.errors;
|
|
<para>
|
|
この関数は、不正なコードページが与えられたり、
|
|
<parameter>subject</parameter> 文字列が
|
|
<parameter>in_codepage</parameter> でなかった場合は、
|
|
E_WARNINGレベルの警告を発生させます。
|
|
</para>
|
|
</refsect1><!-- }}} -->
|
|
|
|
<refsect1 role="seealso"><!-- {{{ -->
|
|
&reftitle.seealso;
|
|
<simplelist>
|
|
<member><function>sapi_windows_cp_get</function></member>
|
|
<member><function>iconv</function></member>
|
|
</simplelist>
|
|
</refsect1><!-- }}} -->
|
|
|
|
</refentry>
|
|
<!-- Keep this comment at the end of the file
|
|
Local variables:
|
|
mode: sgml
|
|
sgml-omittag:t
|
|
sgml-shorttag:t
|
|
sgml-minimize-attributes:nil
|
|
sgml-always-quote-attributes:t
|
|
sgml-indent-step:1
|
|
sgml-indent-data:t
|
|
indent-tabs-mode:nil
|
|
sgml-parent-document:nil
|
|
sgml-default-dtd-file:"~/.phpdoc/manual.ced"
|
|
sgml-exposed-tags:nil
|
|
sgml-local-catalogs:nil
|
|
sgml-local-ecat-files:nil
|
|
End:
|
|
vim600: syn=xml fen fdm=syntax fdl=2 si
|
|
vim: et tw=78 syn=sgml
|
|
vi: ts=1 sw=1
|
|
-->
|