dgitarist
Guest
передача по ссылке
перцы помогите расколбасится с простейшим кодом :
function calculatePath(&$categories, $categoryID)
{
//calculates path to category with categoryID=$categoryID to the root.
//f.e. Root/Computers/Notebooks/Compaq
$path = array();
$i = $categoryID;
if ($i) do
{
$c = categoryIndexInArray(&$categories,$i);
$path[] = $categories[$c][0];
$i = $categories[$c][2];
} while ($i);
$path[]=0; //the last one is root
$path = array_reverse($path); //rotate...
return $path;
} //calculatePath
почему и зачем тута стоит &
перцы помогите расколбасится с простейшим кодом :
function calculatePath(&$categories, $categoryID)
{
//calculates path to category with categoryID=$categoryID to the root.
//f.e. Root/Computers/Notebooks/Compaq
$path = array();
$i = $categoryID;
if ($i) do
{
$c = categoryIndexInArray(&$categories,$i);
$path[] = $categories[$c][0];
$i = $categories[$c][2];
} while ($i);
$path[]=0; //the last one is root
$path = array_reverse($path); //rotate...
return $path;
} //calculatePath
почему и зачем тута стоит &