[PHP] Passwort encrypt

  • Hallo,


    ich möchte für meinen RL-Selfmade Script ein UCP mit PHP machen. Dazu benötige ich jedoch jedoch die selbe encrypt-Funktion für Passwörter wie auf dem SAMP-Server.


    Im Gamemode:



    for(new x = 0; x < strlen(string); x++)
    {
    string[x] += (3^x) * (x % 15);
    if(string[x] > (0xff))
    {
    string[x] -= 256;
    }
    }


    Und folgendermaßen habe ich versucht, das ganze in PHP zu realisieren. Leider kenne ich mich sogut wie garnicht mit Passwort Prüfsummen aus, wesshalb ich nicht weis, wie man die generiert.



    vvvvvvvvvvvvvvvvvv


    Zitat

    Fatal error: Cannot use assign-op operators with overloaded objects nor string offsets in /var/www/web0/html/0/xnr/ucp/index.php on line 9