1. PHP / Говнокод #19930

    −1

    1. 01
    2. 02
    3. 03
    4. 04
    5. 05
    6. 06
    7. 07
    8. 08
    9. 09
    10. 10
    11. 11
    12. 12
    13. 13
    14. 14
    15. 15
    16. 16
    17. 17
    18. 18
    19. 19
    20. 20
    21. 21
    if (!function_exists('printr')) {
            function printr($array) {
                    GLOBAL $USER;
                    if (!$USER->IsAdmin()) return false;
                    $args = func_get_args();
                    if (count($args) > 1) {
                            foreach ($args as $values)
                                    printr($values);
                    } else {
                            if (is_array($array) || is_object($array)) {
                                    echo "<pre>";
                                    print_r($array);
                                    echo "</pre>";
                            } else {
                                    echo $array;
                            }
                    }
                    return true;
            }
    }
    printr($arr1,$arr2, $str, "string");

    Битрикс. Собственный уникальный print_r c Машанями и Медведем. Видио о существовании xdebug адепты bitrix не догадываются.

    http://b.pages.org.ua/php_interface/2011/03/03/universalnyy-print_r-dlya-bitriksa.html

    Запостил: Keeper, 05 Мая 2016

    Комментарии (3) RSS

    • packers and movers in gurgaon(gurugram)
      http://www.quicksolution2.in
      Ответить
    • packers and movers in chandigarh
      https://quicksoluction.com
      packers and movers in delhi
      http://quicksoluction.com/packers-and-movers-in-delhi.html
      packers and movers in mumbai
      http://quicksoluction.com/packers-and-movers-in-mumbai.html
      packers and movers in pune
      http://quicksoluction.com/packers-and-movers-in-pune.html
      packers and movers in gurgaon
      http://quicksoluction.com/packers-and-movers-in-gurgaon.html
      Ответить
    • Но xdebug на продакшене же не будешь ставить
      Ответить

    Добавить комментарий