string composed of 63 characters => strlen returns 119 ????
Posted: Sun Oct 24, 2010 7:56 am
Hi all
can somebody pls explain me how does strlen work? Shouldn't this function return number of characters?
I've got string composed of 63 characters which strlen returns 119 characters
here is code
================
output: 119
thank you all in advance
kind regards
can somebody pls explain me how does strlen work? Shouldn't this function return number of characters?
I've got string composed of 63 characters which strlen returns 119 characters
here is code
Code: Select all
<?php
$string = 'συμβουλευτικών υπηρεσιών στον τομέα των τεχνολογικών εφαρμογών.';
$r = strlen($string);
echo $r;
?>
output: 119
thank you all in advance
kind regards