Jump to content

read list, cut first row


johnwayne77

Recommended Posts

i have a list of codes:

 

0000001

0000002

0000003

0000004

0000005

 

i want to read first line, cut the code (so it won't remain in the list anymore) and put it in a variable.

 

the list would be either in the php file itself or an attached .txt file

 

how do i do that?

 

tnx in advance

Link to comment
https://forums.phpfreaks.com/topic/124060-read-list-cut-first-row/
Share on other sites

If the the codes are stored in the text file then use

$codes = file('codes.txt');

// get first code
$first_code = array_shift($codes);

echo $first_code

// write remaining codes to codes.txt
$codes = array_map('trim', $codes);
file_put_contents('codes.txt', implode(PHP_EOL, $codes));

it echoes the first line

 

but on 2nd refresh it echoes the same first line

 

here is the error i get:

 

[sat Sep 13 17:07:07 2008] [error] PHP Warning:  file_put_contents() expects at least 2 parameters, 1 given in /home/xxx/public_html/test/code.php on line 11

 

line11:

 

file_put_contents(implode(PHP_EOL, $codes));

 

i've replaced the line with:

 

file_put_contents($codes, implode(PHP_EOL, $codes));

 

but i still get an error:

 

[sat Sep 13 17:12:59 2008] [error] PHP Warning:  file_put_contents() expects parameter 1 to be string, array given in /home/xxx/public_html/test/code.php on line 11

If all you're doing is storing your codes and nothing else, then you can use a text file. To prevent any one publicly accessing your text file move it outside of your sites document root, This will then only allow PHP to access your text file.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.