please help.
How To Find String Lenth Count String Letters Characters Php
How To Find String Lenth Count String Letters Characters Php
Post Description:
Post Tags: how, to, find, string, lenth, count, string, letters, characters, php, free php support, php scripts, php questions, php answers, programming, codes, scripts
This Post Has Been Viewed 847 Times Since Fri Feb 15, 2008 4:47 pm Posted By mariosd457 with 1 replies
Next Post »» count and display words in a string into array php sentence word
Post Description:
Post Tags: how, to, find, string, lenth, count, string, letters, characters, php, free php support, php scripts, php questions, php answers, programming, codes, scripts
This Post Has Been Viewed 847 Times Since Fri Feb 15, 2008 4:47 pm Posted By mariosd457 with 1 replies
Next Post »» count and display words in a string into array php sentence word
| How To Find String Lenth Count String Letters Characters Php |
i want to know if there is a way to count how many letters a string has in php?
please help.
please help.
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 Find String Lenth Count String Letters Characters Php
:: 1 :: Reply #41388 Reply By hostman On Fri Feb 15, 2008 4:51 pm
you can use the strlen() php function
example:
PHP CODE:
OUTPUT
as you can see from the example here, the word wallpaperama has 12 characters in length
example:
PHP CODE:
$string = 'wallpaperama';
echo strlen($string);
echo strlen($string);
OUTPUT
12
as you can see from the example here, the word wallpaperama has 12 characters in length
