File: recode.xml

package info (click to toggle)
phpdoc 20020310-1
  • links: PTS
  • area: main
  • in suites: woody
  • size: 35,272 kB
  • ctags: 354
  • sloc: xml: 799,767; php: 1,395; cpp: 500; makefile: 200; sh: 140; awk: 51
file content (92 lines) | stat: -rwxr-xr-x 3,403 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<?xml version="1.0" encoding="iso-8859-1"?>
 <reference id="ref.recode">
  <title>Funciones GNU Recode</title>
  <titleabbrev>Recode</titleabbrev>

  <partintro>
   <para>
    Este modulo contiene un interfaz para la biblioteca GNU Recode version 3.5.
    Para poder usar las funciones definidas en este modulo, debereis de 
    compilar el interprete PHP con la opcion --with-recode. Para poder
    hacer esto debereis tener instalado en vuestro sistema GNU Recode 3.5 o
    superior.
   </para>
   <para>
    La biblioteca GNU Recode convierte entre ficheros con diferentes codigos de 
    caracteres y codificacion. Cuando esto no puede realizarse exactamente, puede
    desahacerse de los caracteres problematicos o crear una aproximacion. La 
    biblioteca reconoce o produce alrededor de 150 codigos de caracteres y puede
    convertir ficheros entre casi todos los pares posibles. La gran mayoria de 
    de codigos de caracteres RFC 1345 estan soportados.
   </para>
  </partintro>

  <refentry id="function.recode-string">
   <refnamediv>
    <refname>recode_string</refname>
    <refpurpose>Recodifica una cadena literal segun una peticion de recodificacion.</refpurpose>
   </refnamediv>
   <refsect1>
    <title>Description</title>
     <methodsynopsis>
     <type>string</type><methodname>recode_string</methodname>
     <methodparam><type>string</type><parameter>request</parameter></methodparam>
     <methodparam><type>string</type><parameter>string</parameter></methodparam>
     </methodsynopsis>
    <para>
     Recodifica la cadena <parameter>string</parameter> segun una peticion de recodificacion
     <parameter>request</parameter>. Devuelve &false; si no puede realizar la recodificacion, 
     &true; si todo va bien.
     </para>
    <para>
     Una simple peticion "recode" podria ser &quot;lat1..iso646-de&quot;.
     Ver tambien la documentacion de GNU Recode de tu instalacion
     para obtener instrucciones detalladas sobre peticiones de recodificacion.
    </para>
   </refsect1>
  </refentry>

  <refentry id="function.recode-file">
   <refnamediv>
    <refname>recode_file</refname>
    <refpurpose>Recodifica de fichero a fichero segun una peticion de recodificacion.</refpurpose>
   </refnamediv>
   <refsect1>
    <title>Description</title>
     <methodsynopsis>
     <type>bool</type><methodname>recode_file</methodname>
     <methodparam><type>int</type><parameter>input</parameter></methodparam>
     <methodparam><type>int</type><parameter>output</parameter></methodparam>
     </methodsynopsis>
    <para>
     Recodifica el fichero definido por <parameter>input</parameter> a el
     fichero definido por <parameter>output</parameter>, segun la peticion 
     de recodificacion <parameter>request</parameter>. Devuelve &false; si 
     no puede realizar la recodificacion, &true; si todo va bien.
     </para>
    <para>
     Esta funcion no procesa ficheros remotos (URLs). Los dos ficheros
     deben de ser locales en el sistema.
    </para>
   </refsect1>
  </refentry>
 </reference>

<!-- 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:
-->