How PHP uses WordWrap to format text paragraphs
This article mainly introduces PHP using WordWrap format text paragraph method, involving the use of wordwrap function skills, with a certain reference value, the need for friends can refer to the next
This example describes how PHP uses WordWrap to format text paragraphs. Share to everyone for your reference. The specific analysis is as follows:
The WordWrap () function can format paragraphs of text in a specified fixed line length, making the paragraph look more orderly
?
1 2 3 4 5 6 7 8 9 10 |
$string = "TRADING on MARGIN poses ADDITIONAL Risks and isn't suitable for all Investors. A complete LIST of the risks associated with MARGIN TRADING is AVAILABLE in the MARGIN RISK disclosure DOCUMENT. "; $string = Str_replace ("\ n", "", $string); $string = Str_replace ("\ R", "", $string); Print (WordWrap ($string, 40). \ n "); ?> |
The above code returns the following result
?
1 2 3 4 5 6 |
TRADING on MARGIN poses ADDITIONAL Risks and isn't suitable for all Investors. A Complete LIST of the Risks associated with MARGIN TRADING is AVAILABLE in the MARGIN RISK disclosure DOCUMENT. |
I hope this article is helpful to everyone's PHP programming.
http://www.bkjia.com/PHPjc/969351.html www.bkjia.com true http://www.bkjia.com/PHPjc/969351.html techarticle how PHP uses WordWrap to format text paragraphs this article mainly introduces the method of using WordWrap formatted text paragraph in PHP, involving the use of WordWrap function, with certain reference ...