Saturday, February 2, 2013

How to extract text from DOCX or ODT files using PHP

How to extract text from DOCX or ODT files using PHP

Function to extract text from DOCX or ODT files using PHP<?php /* Online PHP Examples with Source Code website: http://4evertutorials.blogspot.in/ */ /*Name of the document file*/ $document = 'attractive_prices.docx'; /**Function to extract text*/ function extracttext($filename) { //Check for extension $ext = end(explode('.', $filename)); //if its docx file if($ext...
PHP Ping Class

PHP Ping Class

Create php file named with Ping.php copy following code. For cass usage see bottom of  this  post. Note This script run online with root user privilege no web users<?php /* Online PHP Examples with Source Code website: http://4evertutorials.blogspot.in/ */ // Name of Class Ping.php /** * Ping for PHP....

 

© 2014 4everTutorials. All rights resevered.

Back To Top