.

jueves, 8 de agosto de 2024

PHP - Convertidor de ODT to DOC

OPCIÓN 1

 //Documento inicial

$origen = 'copy.odt';


// 3) Documento de salida

$URLdo_a_conv3 = 'copy.doc';


//copiar documentos con imágenes

//Obtener texto

$actual = file_get_contents($origen);


//escribir texto, incluye imagen

file_put_contents($URLdo_a_conv3, $actual);


OPCIÓN 2

 //Documento inicial

$origen = 'copy.odt';


// 3) Documento de salida

$URLdo_a_conv3 = 'copy.doc';


//copiar documentos con imágenes

copy($origen, "copy.docx");


No hay comentarios:

Publicar un comentario

DOLIBARR - Sistema de Variables de Sustitución

Son editadas en el directorio: /htdocs/core/lib/functions.lib.php   Variable substitution system Ir a la navegación Ir a la búsqueda Return ...