Example #1
0
 * by the Free Software Foundation; either version 2 of the License,
 * or (at your option) any later version.
 * 
 * FusionForge is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with FusionForge; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
 * USA
 */
require_once $gfcommon . 'docman/engine/parser_text.inc.php';
if ($argc != 2) {
    echo "Usage : parser_oo.php <filename>\n";
    exit(1);
}
$fichin = $argv[1];
if (!is_file($fichin)) {
    exit(1);
}
$rep = parser_text($fichin);
// envoi du résultat sur stdout
echo "{$rep}";
// efface le fichier source
unlink($fichin);
// Local Variables:
// mode: php
// c-file-style: "bsd"
// End:
Example #2
0
 * FusionForge is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with FusionForge; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
 * USA
 */
require_once $gfcommon . 'docman/engine/parser_text.inc.php';
if ($argc != 2) {
    echo "Usage : parser_pdf.php <filename>\n";
    exit(1);
}
$fichin = $argv[1];
if (!is_file($fichin)) {
    exit(1);
}
$fichout = "/tmp/gfo" . rand(10000, 99999) . ".tmp";
$cmd = "/usr/bin/pdftotext {$fichin} - > {$fichout}";
$res = shell_exec($cmd);
$rep = parser_text($fichout);
// envoi du résultat sur stdout
echo "{$rep}";
// efface les fichiers témporaires
unlink($fichout);
// Local Variables:
// mode: php
// c-file-style: "bsd"
// End: