ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilFile.php
Go to the documentation of this file.
1 <?php
24 abstract class ilFile
25 {
26  protected string $path;
27 
31  public function deleteTrailingSlash(string $a_path): string
32  {
33  // DELETE TRAILING '/'
34  if (str_ends_with($a_path, '/') || str_ends_with($a_path, "\\")) {
35  return substr($a_path, 0, -1);
36  }
37 
38  return $a_path;
39  }
40 }
deleteTrailingSlash(string $a_path)
delete trailing slash of path variables
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
string $path