This is what I want to achieve:
تلر
This is the problem:
$a = "ت";
$l = "ﻝ";
$z = "ر";
$word = $a.$l.$z;
echo $word;
Prints:
تلر
while:
echo "تلر";
prints:
تلر
Actually there are no white-spaces but if you try this code (remember to allow utf-8) you will see that the letters won't combine. It works when the letters are combined directly. But as I combine then one by one like: $a.$b.
... they wont combine.
Any ideas how I could solve this?