Warning: file_get_contents(/data/phpspider/zhask/data//catemap/1/php/238.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Php 数据库ID的昵称_Php_Frameworks_Teamspeak - Fatal编程技术网

Php 数据库ID的昵称

Php 数据库ID的昵称,php,frameworks,teamspeak,Php,Frameworks,Teamspeak,我从planetteamspeak.com开始使用TeamSpeak 3 PHP框架。 我无法添加和删除客户端的服务器组。 它总是告诉我“无效客户ID”,这意味着我错过了一些东西 我尝试了很多方法来获取身份证,但都没有成功。如果我能通过clientname获得ID就好了,但我不知道怎么做 手动输入也被称为“无效”。这是我的密码: <?php require_once ("lib/TeamSpeak3/TeamSpeak3.php"); require_once ("config/confi

我从planetteamspeak.com开始使用TeamSpeak 3 PHP框架。 我无法添加和删除客户端的服务器组。 它总是告诉我“无效客户ID”,这意味着我错过了一些东西

我尝试了很多方法来获取身份证,但都没有成功。如果我能通过clientname获得ID就好了,但我不知道怎么做

手动输入也被称为“无效”。这是我的密码:

<?php
require_once ("lib/TeamSpeak3/TeamSpeak3.php");
require_once ("config/config.php");

// goes into config later
date_default_timezone_set($config['timezone']);
// current time
$the_time = date('Y-m-d h:i a');
// setup connection
$ts3_VirtualServer = TeamSpeak3::factory("serverquery://" . $config["Username"] . ":" . $config["Password"] . "@" . $config["IP"] . ":" . $config["qPort"] . "/?server_port=" . $config["Port"] . "&nickname=" . $config["Nickname"] . "");
// query clientlist from virtual server
$arr_clientList = $ts3_VirtualServer->ClientList();
// walk through list of clients
foreach($arr_clientList as $client) {
    if ($client["client_type"] == 1) {
        continue;
    }
    echo $client . " benutzt " . $client["client_platform"] . ".\n";
    // fetch first connection of specified client ^
    $client_created = date('Y-m-d h:i a', $client->client_created);
    echo $the_time . ' Uhr lokal. ';
    echo "\n";
    echo $client_created . ' Client erstellt. ';
    $to_time = strtotime($the_time);
    $from_time = strtotime($client_created);
    echo "\n";
    echo $client . " ist ";
    if (round(abs($to_time - $from_time) / 86400, 2) >= 30) {
        echo "Stammgast. ";
        try {
            $sgid = "7";
            $ts3_VirtualServer->serverGroupClientDel($sgid, '12');
        }
        catch(Exception $e) {
            echo $e->getMessage();
        }
        try {
            $sgid = "13";
            $ts3_VirtualServer->serverGroupClientAdd($sgid, '12');
        }
        catch(Exception $e) {
            echo $e->getMessage();
        }
    }
    else if (round(abs($to_time - $from_time) / 86400, 2) >= 14) {
        echo "Member. ";
        try {
            $sgid = "29";
            $ts3_VirtualServer->serverGroupClientDel($sgid, '12');
        }
        catch(Exception $e) {
            echo $e->getMessage();
        }
        try {
            $sgid = "7";
            $ts3_VirtualServer->serverGroupClientAdd($sgid, '12');
        }
        catch(Exception $e) {
            echo $e->getMessage();
        }
    }
    else if (round(abs($to_time - $from_time) / 86400, 2) >= 7) {
        echo "Rookie. ";
        try {
            $sgid = "29";
            $ts3_VirtualServer->clientGetByName($client)->serverGroupClientAdd($sgid, '12');
        }
        catch(Exception $e) {
            echo $e->getMessage();
        }
    }
    echo "\n";
    echo 'Erster connect war ' . round(abs($to_time - $from_time) / 86400, 2) . ' Tage früher. ';
    echo "\n\n";
}
?>

config.php:

<?php

$config = array(); //Creates Config Array
$config["Username"] = "serveradmin";
$config["Password"] = "**********";
$config["IP"] = "***********"; //Server IP/Domain
$config["Port"] = "9987"; //Server Port
$config["qPort"] = "10011"; // Query Port, Default 10011
$config["Nickname"] = rawurlencode("Rangsystem".rand(1, 99)); // Random number & Convertes Botname to a URI friendly Format
$config["timezone"] = 'Europe/Berlin';
?>

我发现了我的问题

$ts3_VirtualServer->serverGroupClientDel($sgid, $client);

$ts3_VirtualServer->serverGroupClientDel($sgid, $client['client_database_id']);