本文整理汇总了PHP中c_ws_plugin__s2member_utils_dirs::create_win_jctn方法的典型用法代码示例。如果您正苦于以下问题:PHP c_ws_plugin__s2member_utils_dirs::create_win_jctn方法的具体用法?PHP c_ws_plugin__s2member_utils_dirs::create_win_jctn怎么用?PHP c_ws_plugin__s2member_utils_dirs::create_win_jctn使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类c_ws_plugin__s2member_utils_dirs
的用法示例。
在下文中一共展示了c_ws_plugin__s2member_utils_dirs::create_win_jctn方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: rel_path
/**
* Finds the relative path, from one location to another.
*
* @package s2Member\Utilities
* @since 110815
*
* @param string $from The full directory path to calculate a relative path `from`.
* @param string $to The full directory or file path, which this routine will build a relative path `to`.
* @param bool $try_realpaths Defaults to true. When true, try to acquire ``realpath()``, thereby resolving all relative paths and/or symlinks in ``$from`` and ``$to`` args.
* @param bool $use_win_diff_drive_jctn Defaults to true. When true, we'll work around issues with different drives on Windows by trying to create a directory junction.
* @return string String with the relative path to: ``$to``.
*/
public static function rel_path($from = FALSE, $to = FALSE, $try_realpaths = TRUE, $use_win_diff_drive_jctn = TRUE)
{
if (!($rel_path = array()) && is_string($from) && strlen($from) && is_string($to) && strlen($to)) {
$from = $try_realpaths && ($_real_from = realpath($from)) ? $_real_from : $from;
// Try this?
$to = $try_realpaths && ($_real_to = realpath($to)) ? $_real_to : $to;
// Try to find realpath?
$from = is_file($from) ? dirname($from) . "/" : $from . "/";
// A (directory) with trailing `/`.
$from = c_ws_plugin__s2member_utils_dirs::n_dir_seps($from);
// Normalize directory separators now.
$to = c_ws_plugin__s2member_utils_dirs::n_dir_seps($to);
// Normalize directory separators here too.
$from = preg_split("/\\//", $from);
// Convert ``$from``, to an array. Split on each directory separator.
$to = preg_split("/\\//", $to);
// Also convert ``$to``, to an array. Split this on each directory separator.
if ($use_win_diff_drive_jctn && stripos(PHP_OS, "win") === 0) {
if (preg_match("/^([A-Z])\\:\$/i", $from[0], $_m) && ($_from_drive = $_m[1]) && preg_match("/^([A-Z])\\:\$/i", $to[0], $_m) && ($_to_drive = $_m[1])) {
if ($_from_drive !== $_to_drive) {
$_from_drive_jctn = $_from_drive . ":/s2-" . $_to_drive . "-jctn";
$_sys_temp_dir_jctn = c_ws_plugin__s2member_utils_dirs::get_temp_dir(false) . "/s2-" . $_to_drive . "-jctn";
$_jctn = $_sys_temp_dir_jctn && strpos($_sys_temp_dir_jctn, $_from_drive) === 0 ? $_sys_temp_dir_jctn : $_from_drive_jctn;
if (($_from_drive_jctn_exists = is_dir($_from_drive_jctn) ? true : false) || c_ws_plugin__s2member_utils_dirs::create_win_jctn($_jctn, $_to_drive . ":/")) {
array_shift($to);
foreach (array_reverse(preg_split("/\\//", $_from_drive_jctn_exists ? $_from_drive_jctn : $_jctn)) as $_jctn_dir) {
array_unshift($to, $_jctn_dir);
}
} else {
trigger_error("Unable to generate a relative path across different Windows drives." . " Please create a Directory Junction here: " . $_from_drive_jctn . ", pointing to: " . $_to_drive . ":/", E_USER_ERROR);
}
}
}
}
unset($_real_from, $_real_to, $_from_drive, $_to_drive, $_from_drive_jctn, $_sys_temp_dir_jctn, $_jctn, $_from_drive_jctn_exists, $_jctn_dir, $_m);
$rel_path = $to;
// Re-initialize. Start ``$rel_path`` as the value of the ``$to`` array.
foreach (array_keys($from) as $_depth) {
if (isset($from[$_depth], $to[$_depth]) && $from[$_depth] === $to[$_depth]) {
array_shift($rel_path);
} else {
if (($_remaining = count($from) - $_depth) > 1) {
$_left_p = -1 * (count($rel_path) + ($_remaining - 1));
$rel_path = array_pad($rel_path, $_left_p, "..");
break;
// Stop now, no need to go any further.
} else {
$rel_path[0] = "./" . $rel_path[0];
break;
// Stop now.
}
}
}
}
return implode("/", $rel_path);
}