You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
1.0 KiB
PHP
44 lines
1.0 KiB
PHP
<?php
|
|
|
|
/**
|
|
* Smarty read include path plugin
|
|
*
|
|
* @package Smarty
|
|
* @subpackage PluginsInternal
|
|
* @author Monte Ohrt
|
|
*/
|
|
|
|
/**
|
|
* Smarty Internal Read Include Path Class
|
|
*/
|
|
class Smarty_Internal_Get_Include_Path {
|
|
/**
|
|
* Return full file path from PHP include_path
|
|
*
|
|
* @param string $filepath filepath
|
|
* @return mixed full filepath or false
|
|
*/
|
|
public static function getIncludePath($filepath)
|
|
{
|
|
static $_path_array = null;
|
|
|
|
if(!isset($_path_array)) {
|
|
$_ini_include_path = ini_get('include_path');
|
|
|
|
if(strstr($_ini_include_path,';')) {
|
|
// windows pathnames
|
|
$_path_array = explode(';',$_ini_include_path);
|
|
} else {
|
|
$_path_array = explode(':',$_ini_include_path);
|
|
}
|
|
}
|
|
foreach ($_path_array as $_include_path) {
|
|
if (file_exists($_include_path . DS . $filepath)) {
|
|
return $_include_path . DS . $filepath;
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
}
|
|
|
|
?>
|