bu ne PHP operatörü yapar = &

0 Cevap php

Possible Duplicate:
what do “=&” / “&=” operators in php mean?

Ben bu operatörü bulundu "= &" Aşağıdaki kodu, ve ben bunun ne anlama geldiğini bilmiyorum. Birisi gelir ve ne yaptığını açıklayabilir misiniz?

BUNU OKUYUN KOD:

function ContentParseRoute($segments)

{
    $vars = array();

    //Get the active menu item
    $menu =& JSite::getMenu();
    $item =& $menu->getActive();

    // Count route segments
    $count = count($segments);
        ....

0 Cevap