How To Make Long String Shorter In Php Making Big String Short

Mobile
feeds
Welcome Login | Register

How To Make Long String Shorter In Php Making Big String Short
  Forums Index
      » PHP Forums
        » » how to make long string shorter in php making big string short



How To Make Long String Shorter In Php Making Big String Short
Post Description:
Post Tags: how, to, make, long, string, shorter, in, php, making, big, string, short, free php support, php scripts, php questions, php answers, programming, codes, scripts
This Post Has Been Viewed 392 Times Since Thu Feb 28, 2008 7:02 pm Posted By hostman with 1 replies
Next Post »» Modified Preorder Tree Traversal tutorial
How To Make Long String Shorter In Php Making Big String Short
ok, lets say you have a long string, lets say i have an image (picture) file thats very long but i want to limit the amount of the string length i ca do this.

so if i have a string like this:

$long_string = 'zzy1p89tgzw1jwol3bk7p-xicpaiuugwwo7rxpppcml1rnurl6ailtp-2mpq96qej63sd7n.gif';

now, i only keep the last 15 characters of the file name to make it short i can use this
<?php
$max_filename_chars = 15;
$long_string = 'zzy1p89tgzw1jwol3bk7p-xicpaiuugwwo7rxpppcml1rnurl6ailtp-2mpq96qej63sd7n.gif';
$long_string = substr($long_string, - $max_filename_chars);
echo $long_string;
?>

so now the value of will be 96qej63sd7n.gif




Leave Your Comments






Share
URL:
You can use this HTML code to put it on your website to show your friends this wallpaper. Use this code on your profile like myspace, friendster, Facebook or others. Just Copy and Paste it in your HTML on your websites



Fourms BBCODE:
BBCODE is use on forums. You can put this code on all your BBCODE enabled forums like PhpBB, vBulletin® and others. Just Copy and Paste this code on your Posts and Replies on your forums





Comments and replies About How To Make Long String Shorter In Php Making Big String Short




:: 1 :: Reply #43539 Reply By tony On Thu Feb 28, 2008 7:07 pm
20080228-43539-jubcvatfrpaisv-p.gif
yes, i like this tutorial, it help me. thanks