<?php
  $repertoire
="../../fichiers";
  
$catalogue="$repertoire/catalogue.txt";
  
$fichier_next_id="$repertoire/id";
  
  function 
entree_catalogue($ligne) {
    
$space=strpos($ligne,' ');
    
$id=substr($ligne,0,$space);
    
$space2=strpos($ligne,' ',$space+1);
    
$type=substr($ligne,$space+1,$space2-$space-1);
    
$titre=substr($ligne,$space2+1);
    return array(
$id,$type,$titre);
  }
?>