Answer the question
In order to leave comments, you need to log in
How to crop text line by line?
This is the first line of text.
And this is the second line.
And here is the third line.
This is the first line of text.
And this is the second line.
Answer the question
In order to leave comments, you need to log in
<?php
$text = 'Это первая строка текста.
А это вторая строка.
А здесь третья строка.';
// split to rows
$rows=explode(PHP_EOL, $text);
//get first 2 rows
$first2rows = array_slice($rows, 0, 2);
//implode to new text
$newtext = implode(PHP_EOL,$first2rows);
var_export($newtext);
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question