i have a variable like the following and i want a function to only keep the first 20 lines, so it will strips any additional \n lines more than 20.
<?php
$mytext="Line1
Line2
Line3
....."
keeptwentyline($mytext);
?>
|
i have a variable like the following and i want a function to only keep the first 20 lines, so it will strips any additional \n lines more than 20.
|
|||
|
|
|
I suppose a (maybe a bit dumb ^^ ) solution would be to :
Note : I passed the number of lines as a parameter -- that way, the function can be used elsewhere ;-)
(that one will probably need qiute some memory, to copy the string into an array, extract the first lines, re-create a string...) |
|||||||||
|
Or (probably faster)
|
|||||||
|