How to retrieve a random line from text file, then remove the line from the text file in PHP

user3791824

I am having a bit of a hard time thinking about what to do for this. I would like to display a random line from a specific text file, then after it displays it will remove that line from the text file so it will no longer show up when page refreshed.

$lines = file('');
echo $lines[array_rand($lines)];
Fabricator

file read lines into array. array_rand to get a random key from the array of lines. unset to remove an element. file_put_contents to write back to file.

$filename = 'filename.txt';
$lines = file($filename);
$r = array_rand($lines);

echo $lines[$r];
unset($lines[$r]);
file_put_contents($filename, implode("", $lines));

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How to display a random line from a text file?

From Dev

How to display a random line from a text file?

From Dev

How to remove a line from a text file?

From Dev

PHP - WordPress Script To Get Random Line From Text File

From Dev

get random line from text file

From Dev

get random line from text file

From Dev

How to remove extra comma from line in text file in batch file?

From Dev

How to remove extra comma from line in text file in batch file?

From Dev

How can I display a random line from a text file?

From Dev

How to replace string with random line from text file multiple times

From Dev

Remove line breaks from text file

From Dev

how to remove duplicate line from text file vb.net

From Dev

How to remove new line from text file in for loop (CMD/Batch)

From Dev

PHP - using a line from a text file in an IF statement

From Dev

Get line from text file - php

From Dev

Php - echo line 6 from Text file

From Dev

How to extract the first line from a text file?

From Dev

How to erase line from text file in Python?

From Dev

Fetching Random Line From Flat Text File Database

From Dev

Pulling a random word/string from a line in a text file in python

From Dev

Pick a random line from a text file and store it in a variable (Python 3)

From Dev

how to deletes line from a text file that are taken from another file

From Dev

PHP : How to Replace some text from n th line to m th line from file?

From Dev

How do I remove the newline from the last line in a file in order to add text to that line?

From Dev

Writing to a text file from another text file line by line in c

From Dev

Change line in text file from other text file with command line

From Dev

Replace line in text file with line from other text file

From Dev

Change line in text file from other text file with command line

From Dev

How to extract text, line by line from a txt file in python

Related Related

  1. 1

    How to display a random line from a text file?

  2. 2

    How to display a random line from a text file?

  3. 3

    How to remove a line from a text file?

  4. 4

    PHP - WordPress Script To Get Random Line From Text File

  5. 5

    get random line from text file

  6. 6

    get random line from text file

  7. 7

    How to remove extra comma from line in text file in batch file?

  8. 8

    How to remove extra comma from line in text file in batch file?

  9. 9

    How can I display a random line from a text file?

  10. 10

    How to replace string with random line from text file multiple times

  11. 11

    Remove line breaks from text file

  12. 12

    how to remove duplicate line from text file vb.net

  13. 13

    How to remove new line from text file in for loop (CMD/Batch)

  14. 14

    PHP - using a line from a text file in an IF statement

  15. 15

    Get line from text file - php

  16. 16

    Php - echo line 6 from Text file

  17. 17

    How to extract the first line from a text file?

  18. 18

    How to erase line from text file in Python?

  19. 19

    Fetching Random Line From Flat Text File Database

  20. 20

    Pulling a random word/string from a line in a text file in python

  21. 21

    Pick a random line from a text file and store it in a variable (Python 3)

  22. 22

    how to deletes line from a text file that are taken from another file

  23. 23

    PHP : How to Replace some text from n th line to m th line from file?

  24. 24

    How do I remove the newline from the last line in a file in order to add text to that line?

  25. 25

    Writing to a text file from another text file line by line in c

  26. 26

    Change line in text file from other text file with command line

  27. 27

    Replace line in text file with line from other text file

  28. 28

    Change line in text file from other text file with command line

  29. 29

    How to extract text, line by line from a txt file in python

HotTag

Archive