Activity Stream
48,167 MEMBERS
6811 ONLINE
besthostingforums On YouTube Subscribe to our Newsletter besthostingforums On Twitter besthostingforums On Facebook besthostingforums On facebook groups

Results 1 to 2 of 2
  1.     
    #1
    Member
    Website's:
    LinksBox.net TechnologyTwist.com

    Question How to make a text line without wrap ?

    Hello

    I want to know how to stop warping a long text line in php
    Means we set the value of characters after that it would be like ....\

    Example

    Before -

    I love php but I don't know how to use it exactly.


    After -

    I love php but I don't know .....


    please help me.

    Thanks,
    mann
    mannNmeet Reviewed by mannNmeet on . How to make a text line without wrap ? Hello I want to know how to stop warping a long text line in php Means we set the value of characters after that it would be like ....\ Example Before - I love php but I don't know how to use it exactly. Rating: 5

  2.   Sponsored Links

  3.     
    #2
    Respected Member
    Website's:
    DL4Everything.com Soft2050.in
    This could be easily achieved with php substr function

    Link: http://php.net/manual/en/function.substr.php

    Example code to do your task:

    PHP Code: 
    <?php

    $maxlength 
    30;

    $actualstring "I love php but I don't know how to use it exactly.";

    $outputstring = (strlen($actualstring) > $maxlength) ? substr($actualstring0$maxlength) . "..." $actualstring;

    echo 
    $outputstring;

    ?>
    Specify max words in maxlength var! and check if length exceeds through strlen in ternary operator

    The above code will not work if actualstring is small then maxlength! it will only output default data

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Password image wrap around text ??/
    By sandip1110 in forum Graphics Area
    Replies: 11
    Last Post: 7th Apr 2012, 06:56 AM
  2. In line image and text...
    By r00ts in forum Wordpress
    Replies: 2
    Last Post: 24th Mar 2012, 02:24 PM
  3. [TUT]How to make 3D Text in photoshop CS5
    By Rock|the|world in forum Graphics Area
    Replies: 5
    Last Post: 22nd Oct 2011, 08:08 AM
  4. Make Any Links Clickable in WordPress with One-Line Code
    By ThreeNF in forum Webmaster Resources
    Replies: 8
    Last Post: 13th May 2011, 02:46 PM
  5. over wrap in codes?
    By Arcangel061099 in forum IP.Board
    Replies: 7
    Last Post: 5th Mar 2008, 03:10 PM

Tags for this Thread

BE SOCIAL