function fp_get_tmp_path
Search API
| 7.x misc.inc | fp_get_tmp_path() |
Convenience function to return the temporary directory path. Does NOT end with a trailing slash. Ex: /tmp
File
- includes/
misc.inc, line 2171 - This file contains misc functions for FlightPath
Code
function fp_get_tmp_path() {
return variable_get("tmp_path", "/tmp");
}
