| 
<?php 
/**
 * IFile framework
 *
 * @category   IndexingFile
 * @package    ifile.example
 * @author        Giampaolo Losito, Antonio Di Girolomo
 * @copyright  2011-2013 isApp.it (www.isapp.it)
 * @license    GNU LESSER GENERAL PUBLIC LICENSE Version 2.1, February 1999
 * @version    1.2.1
 *
 */
 
 /**
 * This script is a example how to indexed more documents with MySql
 *
 * IMPORTANT:
 * For MySql is important define in the configuration (IFileConfig.xml)
 * Define Table name that IFile must used
 * The fields: name, path, filename as "Text":
 *
 <table-name collation="utf8_general_ci">ifile_index_table</table-name>
 ...
 <zend-document>
 <fields>
 <field name="name" type="Text" />
 <field name="path" type="Text" />
 <field name="filename" type="Text" />
 </fields>
 </zend-document>
 */
 error_reporting(E_ALL);
 /** require IFileFactory */
 require_once '../IFileFactory.php';
 
 // Create connection at MySql
 // IFile works only with MySqli Interfaceù
 // First to test, you must create "example_ifile_index" DB in the your MySql
 $connection = @new mysqli('localhost', 'root', '', 'example_ifile_index', 3306);
 if (mysqli_connect_error()) {die(" - ".mysqli_connect_error()." - ");}
 // Folder of Documents
 $directory  = "myfiles";
 
 // first try for catch the errors of interface
 try {
 
 // instance IFileFactory
 $IFileFactory = IFileFactory::getInstance();
 // define mysqli interface
 $ifile = $IFileFactory->getIFileIndexing('mysqli', $connection);
 
 // array of files
 $files = array();
 // get files in folder
 if ($handle = opendir($directory)) {
 while ($file = readdir($handle)) {
 if (!is_dir("{$directory}/{$file}")) {
 if ($file != "." & $file != "..") {
 $files[] = "{$directory}/{$file}";
 }
 }
 }
 }
 closedir($handle);
 
 foreach ($files as $file) {
 // second try for catch the error in index process of documents
 try {
 // set document
 $ifile ->setIndexFile($file);
 // add document to index
 $doc = $ifile->addDocument();
 // store document
 $ifile->commit();
 
 echo "The ($file) is correctly indexing<br />";
 
 } catch (exception $e) {
 echo "Error in document: ($file) - ".$e->getMessage()."<br />";
 }
 }
 
 } catch (Exception $e) {
 echo "Generic Error: ".$e->getMessage()."<br />";
 }
 ?>
 |