Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Wrap text every 2500 characters in a <div> for pagination using PHP or javascript

I have a long block of text. I'd like to wrap every 2500 characters of this text into a <div> such I could do pagination on it.

The following doesn't work:

//replace 2500 for 5 for purpose of this example
$text="sfdkjas;fakska;ldjk";
$text=wordwrap($text, 5, '<div class="individualPage">');

output:

sfdkj<div class="individualPage">as;fa<div class="individualPage">kska;l<div
class="individualPage">djk

Obviously I need the closing </div> tag to make this work.

Does anyone have a suggestion for this in PHP or Javascript/jQuery?

like image 932
tim peterson Avatar asked Nov 22 '25 12:11

tim peterson


2 Answers

Just add the </div> then?

$text = '<div class="individualPage">'
      . wordwrap($text, 5, '</div><div class="individualPage">')
      . '</div>';

However, you can do even better with javascript: you can paginate in response to the viewer's screen size.

Just set your HTML to:

<div id="target">...</div>

Add some css for pages:

#target {
    white-space: pre-wrap; /* respect line breaks */
}
.individualPage {
    border: 1px solid black;
    padding: 5px;    
}

And then use the following code:

var contentBox = $('#target');
//get the text as an array of word-like things
var words = contentBox.text().split(' ');

function paginate() {
    //create a div to build the pages in
    var newPage = $('<div class="individualPage" />');
    contentBox.empty().append(newPage);

    //start off with no page text
    var pageText = null;
    for(var i = 0; i < words.length; i++) {
        //add the next word to the pageText
        var betterPageText = pageText ? pageText + ' ' + words[i]
                                      : words[i];
        newPage.text(betterPageText);

        //Check if the page is too long
        if(newPage.height() > $(window).height()) {
            //revert the text
            newPage.text(pageText);

            //and insert a copy of the page at the start of the document
            newPage.clone().insertBefore(newPage);

            //start a new page
            pageText = null;
        } else {
            //this longer text still fits
            pageText = betterPageText;             
        }
    }    
}

$(window).resize(paginate).resize();

This will work in conjunction with the PHP solution, providing backwards compatibility if javascript is disabled.

like image 183
Eric Avatar answered Nov 25 '25 01:11

Eric


This is the way I'd do it:

$out = '';
$text = str_split($text, 2500);
foreach($text as $t){
    $out .= "<div class='individualPage'>".$t."</div>";
}
echo $out;

EDIT: This will break apart words, so stick with wordwrap(). :D

like image 36
Grexis Avatar answered Nov 25 '25 03:11

Grexis



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!