• 08-05-2016, 00:33:38
    #1
    merhaba websiteme script dosylarını attım fakat şöyle hata alıyorum Strict Standards: Only variables should be passed by reference in /home/deneme/public_html/basitblog-1.0.2/yonetim/inc/sistem/functions.php on line 28
    28. satırdaki kod $h = $dr.end(explode($dr, $h));
    yardımcı olurmusunuz?
  • 08-05-2016, 12:31:25
    #2
    end fonksiyonuna değişken vermeniz gerekiyor.

    bu kod:
    $h = $dr.end(explode($dr, $h));
    bu şekilde olmalı:
    $ex = explode($dr, $h);
    $h = $dr.end($ex);