manuzhai Mon Apr 29 05:08:39 2002 EDT Added files: /phpdoc/nl/reference/mysql/functions mysql-character-set-name.xml Log: Added.
Index: phpdoc/nl/reference/mysql/functions/mysql-character-set-name.xml +++ phpdoc/nl/reference/mysql/functions/mysql-character-set-name.xml <?xml version="1.0" encoding="iso-8859-1"?> <!-- $Revision: 1.1 $ --> <!-- EN-Revision: 1.2 Maintainer: manuzhai Status: ready --> <refentry id="function.mysql-character_set_name"> <refnamediv> <refname>mysql_character_set_name</refname> <refpurpose>Geeft de naam van de character set terug</refpurpose> </refnamediv> <refsect1> <title>Beschrijving</title> <methodsynopsis> <type>int</type><methodname>mysql_character_set_name</methodname> <methodparam choice="opt"><type>resource</type><parameter>link_identifier</parameter></methodparam> </methodsynopsis> <para> <function>mysql_character_set_name</function> geeft de default character set naam terug voor de huidige connectie. </para> <example> <title><function>mysql_character_set_name</function> voorbeeld</title> <programlisting role="php"> <![CDATA[ <?php $link = mysql_connect('localhost', 'mysql_user', 'mysql_password'); $charset = mysql_character_set_name($link); printf ("Huidige character set is %s\n", $charset); ?> ]]> </programlisting> <para> Het bovenstaande voorbeeld zou de volgende output genereren: <screen> <![CDATA[ latin1 ]]> </screen> </para> </example> <para> Zie ook: <function>mysql_real_escape_string</function> </para> </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:"../../../../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 -->