While Jose Vega suggested a good solution for your problem, there is a farily minor performance issue with the approach. I've whipped up a test for this. While each solution performs well enough for practical purposes, there is a difference.
EDIT: So anyway, since this is neither Ruby, nor Java, nor Smalltalk, you'd be better off using the provided tools than trying to bend the language to meet your expectations. Mostly for performance reasons (because native tools are usually written in C or are low-level enough to have very little performance impact, although it's not always true), and for readability: the community is used to seeing mb_strlen() or strlen(), and other string-related functions.
Here's the code I used for benchmarking:
http://pastebin.com/Q4BfzQtj
Results:
====> Test run 0
And here are the results:
Test with {} = 0.00097203254699707
Test with strlen() = 0.0030488967895508
Test with mb_strlen() = 0.0031669139862061
Test with String1 object = 0.012485027313232
Test with String object = 0.036020040512085
====> Test run 1
Test with {} = 0.00095200538635254
Test with strlen() = 0.0029759407043457
Test with mb_strlen() = 0.0031669139862061
Test with String1 object = 0.012346982955933
Test with String object = 0.036028146743774
====> Test run 2
Test with {} = 0.0009617805480957
Test with strlen() = 0.0029959678649902
Test with mb_strlen() = 0.0031518936157227
Test with String1 object = 0.012416124343872
Test with String object = 0.037784099578857
====> Test run 3
Test with {} = 0.00081610679626465
Test with strlen() = 0.0025439262390137
Test with mb_strlen() = 0.0027410984039307
Test with String1 object = 0.010634183883667
Test with String object = 0.030903100967407
====> Test run 4
Test with {} = 0.00081205368041992
Test with strlen() = 0.0025379657745361
Test with mb_strlen() = 0.0027129650115967
Test with String1 object = 0.010583162307739
Test with String object = 0.031081914901733
====> Test run 5
Test with {} = 0.000823974609375
Test with strlen() = 0.0025639533996582
Test with mb_strlen() = 0.0026860237121582
Test with String1 object = 0.010586023330688
Test with String object = 0.030833959579468
mb_strlen($str)anyway because->lengthdoes not return the actual UTF-8 length of the string. ;-) – Victor Nicollet Dec 12 '10 at 19:55