Willkommen

Willkommen im PHP Archiv Blog! Hier finden Sie Informationen zum Thema PHP, PHP Codeschnipsel und Scriptvorstellungen. Bei unserem Projekt phparchiv.de, einer speziellen Suchmaschine für PHP Scripte, finden Sie über 5700 Einträge.

Artikel-Schlagworte: „Textcounter in PHP“

Doppelte Zeilen mittels PHP entfernen

Eine Routine zum Entfernen doppelter Zeilen

/**
 * RemoveDuplicatedLines
 * This function removes all duplicated lines of the given text file.
 *
 * @param     string
 * @param     bool
 * @return    string
 */
function RemoveDuplicatedLines($Filepath, $IgnoreCase=false, $NewLine="\n"){

    if (!file_exists($Filepath)){
        $ErrorMsg  = 'RemoveDuplicatedLines error: ';
        $ErrorMsg .= 'The given file ' . $Filepath . ' does not exist!';
        die($ErrorMsg);
    }

    $Content = file_get_contents($Filepath);

    $Content = RemoveDuplicatedLinesByString($Content, $IgnoreCase, $NewLine);

    // Is the file writeable?
    if (!is_writeable($Filepath)){
        $ErrorMsg  = 'RemoveDuplicatedLines error: ';
        $ErrorMsg .= 'The given file ' . $Filepath . ' is not writeable!';
        die($ErrorMsg);
    }

    // Write the new file
    $FileResource = fopen($Filepath, 'w+');
    fwrite($FileResource, $Content);
    fclose($FileResource);
}

/**
 * RemoveDuplicatedLinesByString
 * This function removes all duplicated lines of the given string.
 *
 * @param     string
 * @param     bool
 * @return    string
 */
function RemoveDuplicatedLinesByString($Lines, $IgnoreCase=false, $NewLine="\n"){

    if (is_array($Lines))
        $Lines = implode($NewLine, $Lines);

    $Lines = explode($NewLine, $Lines);

    $LineArray = array();

    $Duplicates = 0;

    // Go trough all lines of the given file
    for ($Line=0; $Line < count($Lines); $Line++){

        // Trim whitespace for the current line
        $CurrentLine = trim($Lines[$Line]);

        // Skip empty lines
        if ($CurrentLine == '')
            continue;

        // Use the line contents as array key
        $LineKey = $CurrentLine;

        if ($IgnoreCase)
            $LineKey = strtolower($LineKey);

        // Check if the array key already exists,
        // if not add it otherwise increase the counter
        if (!isset($LineArray[$LineKey]))
            $LineArray[$LineKey] = $CurrentLine;
        else
            $Duplicates++;
    }

    // Sort the array
    asort($LineArray);

    // Return how many lines got removed
    return implode($NewLine, array_values($LineArray));
}

Quelle: Johnas John

Simpler Textcounter in PHP

Mit den folgenden paar Zeilen kann man einen sehr einfachen Textcounter ohne Reloadsperre realisieren. Dazu wird der Code einfach dort in der Seite platziert, wo der Counter angezeigt werden soll.

<?php
$counterdatei = "counter.txt";
$datei = file($counterdatei);
$counter = $datei[0] + 1;
$handle = fopen($dateiname, "w");
fwrite($handle, $counter);
fclose($handle);
// Ausgabe der Counters
echo $counter." Besucher";
?>

Der Counterstand wird in die Datei counter.txt geschrieben.

Werbung
VistaPrint - Gratis-Visitenkarten und mehr
Google

Google
PHP News
  • PHP Version 5.2.12 schließt Sicherheitslücken
    20. Dezember 2009 | 11:42

    Die PHP-Entwickler haben endlich die lange erwartete Version 5.2.12 vorgelegt. In dieser PHP Version werden über als 60 Fehler beseitigt. Seit Mitte dies Jahres ist PHP 5.3 verfügbar. Diese Version bringt allerdings einige Probleme mit der Rückwärtskompatibilität mit sich und verträgt sich nicht mit einigen weit verbreiteten PHP-Anwendungen. Deshalb wird es noch eine Zeitlang Upgrades [...]

  • RSSArchiv von PHP News »
Google