Go to the source code of this file.
Namespaces | |
namespace | TYPO3 |
Classes | |
class | t3lib_exec |
Functions | |
_getOS () | |
returns on which OS we're runing | |
_fixPath ($path) | |
set a path to the right format |
|
set a path to the right format
Definition at line 351 of file class.t3lib_exec.php. References TYPO3_MODE. Referenced by t3lib_exec::_getPaths(). 00351 { 00352 return str_replace ('//',"/",$path.'/'); 00353 }
|
|
returns on which OS we're runing
Definition at line 340 of file class.t3lib_exec.php. Referenced by t3lib_exec::_getPaths(), and t3lib_exec::checkCommand(). 00340 { 00341 return stristr(PHP_OS,'win')&&!stristr(PHP_OS,'darwin')?'WIN':'UNIX'; 00342 }
|