php explode() and wordwrap()
by alamster in March 3rd, 2008
Whats the different of explode() and wordwrap() ?
Answer :
just see this example for explode()
<?php
$birthday=’1998-12-11′;
//we need to split the component to date, month and year
$day_parts=explode(‘-’,$birthday);
// we use – as tool to separate, now print
$date_component=$day_parts[2];
$month_component=$day_parts[1];
$year_component=$day_parts[0];
?>
Wordwrap will ‘wrapping’ user input, like formatting crazy user who type ‘aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa’ till he satisfied and brake our guestbook table.
Just make sure to add number bigger than 0 to enable wordwrap.
- php word wrap and explode
- wordwrap php
- css wordwrap valid
- php word wrap allow tab
- php wordwrap explode
- php: restrict wordwrap
- remove word wrap php
- use explode() and word wrap()
- why we use explode in php
- word wrap for comment php
- php link explode
- php explode youtube
- explode
- explode(§ wordwrap
- how to avoid wrapping of word in php
- how to remove wordwrap in php
- make word wrap valid
- php explode date month
- php explode images
- php explode without wordwrap
- php explode wordwrap
- wordwrap remove php






No Comment
Random Post
Leave Your Comments Below