Mam następujący kod z CodeIgniter index.php
Co to jest __FILE__?
moim rozumieniu jest to, że
Jeśli /
pozycji strun w $system_folder
(w tym przypadku CIcore_1_7_1) jest false
, a jeśli realpath
funkcja istnieje i (?) Jest nie false
, $system_folder
jest przypisany do (?) /$system_folder
. else $system_folder
jest przypisany do $system_folder
z zamiarem zastąpienia \\
z /
.
Q1. Co oznacza funkcja realpath?
Q2. Co to znaczy?
@realpath(dirname(__FILE__))
Q3. Czy mam rację? Czy mam jakieś nieporozumienie?
Q4. Jakiej sytuacji potrzebujesz?
str_replace("\\", "/", $system_folder)
$system_folder = "CIcore_1_7_1";
/*
|---------------------------------------------------------------
| SET THE SERVER PATH
|---------------------------------------------------------------
|
| Let's attempt to determine the full-server path to the "system"
| folder in order to reduce the possibility of path problems.
| Note: We only attempt this if the user hasn't specified a
| full server path.
|
*/
if (strpos($system_folder, '/') === FALSE)
{
if (function_exists('realpath') AND @realpath(dirname(__FILE__)) !== FALSE)
{
$system_folder = realpath(dirname(__FILE__)).'/'.$system_folder;
}
}
else
{
// Swap directory separators to Unix style for consistency
$system_folder = str_replace("\\", "/", $system_folder);
}
Dlaczego są dwa \ s, zamiast jednego \? – shin
Ponieważ \ jest znakiem ucieczki - aby wstawić cytat do napisu, użyjesz "to jest \", cytat ". Aby umieścić odwrotny ukośnik, potrzebujesz dwóch z nich:" to jest \ "ukośnik odwrotny" – Greg