ILIAS  release_4-4 Revision
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilFile.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (c) 1998-2009 ILIAS open source, Extended GPL, see docs/LICENSE */
3 
4 
13 class ilFile
14 {
20  var $path;
21 
27  var $ilias;
28 
29 
35  function ilFile()
36  {
37  global $ilias;
38 
39  $this->ilias = &$ilias;
40  }
41 
48  function deleteTrailingSlash($a_path)
49  {
50  // DELETE TRAILING '/'
51  if (substr($a_path,-1) == '/' or substr($a_path,-1) == "\\")
52  {
53  $a_path = substr($a_path,0,-1);
54  }
55 
56  return $a_path;
57  }
58 }
59 ?>
deleteTrailingSlash($a_path)
delete trailing slash of path variables
redirection script todo: (a better solution should control the processing via a xml file) ...
ilFile()
Constructor get ilias object public.
Base class for all file (directory) operations This class is abstract and needs to be extended...