Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.
What is this page about?
This page explains how to load a text file in PHP using Aspose.Words for .NET via PHP bindings.
Load Text File Example
PHP Code
$dataDir = '.';
$comHelper = new \COM("Aspose.Words.ComHelper");
// The encoding of the text file is automatically detected.
$doc = $comHelper->Open($dataDir."/LoadTxt.txt");
// Save as any Aspose.Words supported format, such as DOCX.
$doc->Save($dataDir . "/LoadTxt Out.docx");
print "Text document loaded successfully.\nFile saved at " . $dataDir . "LoadTxt Out.docx" . PHP_EOL;
Download Load Text File Example (Aspose.Words) from any of the below mentioned social coding sites:
Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.