Lue_chin (20-03-12)
hello friends i have a idea and want a code for this
can we paste the first 15 character of a story
means i have a full story or description about something
can we do this with phpFor ex : if a description
nokia 5233 is the mobile which have more powerful fictions and i want to paste like this Nokia 5233 is the mobile.....
taken from [Only registered and activated users can see links. Click Here To Register...]
Just realized i copyied the above code with negative last numbers .... they can be positive also (counting from begining of string)PHP Code:<?php
$rest = substr("abcdef", 0, -1); // returns "abcde"
$rest = substr("abcdef", 2, -1); // returns "cde"
$rest = substr("abcdef", 4, -4); // returns false
$rest = substr("abcdef", -3, -1); // returns "de"
?>
so in your case you would need
PHP Code:$rest = substr($rest, 0, 15); // returns first 15 chars
Last edited by something else; 19-03-12 at 03:11.
Lue_chin (20-03-12)
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks