I'm executing these commands:
$text="example text";
$parts=explode( " ", $text);
$result=$parts[0];
$result becomes a weird array.
echo "$result" prints 'example',
but if I use function count_chars($re sult) i got error message, that $result
is an array not a string.
Please tell me how to make my $result be a string
Thanks
Domin
domin(at)zyx.pl
$text="example text";
$parts=explode( " ", $text);
$result=$parts[0];
$result becomes a weird array.
echo "$result" prints 'example',
but if I use function count_chars($re sult) i got error message, that $result
is an array not a string.
Please tell me how to make my $result be a string
Thanks
Domin
domin(at)zyx.pl
Comment