I use Redis with PHP, with phpRedis connector. When i save a word in arabic language I can't retrieve this word, it's return encoding values.
In redis the problem is solved if I connect with: >redis-cli --raw
Example here:
amic:/var/www/core-bitercash$ redis-cli 127.0.0.1:6379> set xx جيد OK 127.0.0.1:6379> get xx "\xd8\xac\xd9\x8a\xd8\xaf"
amic:/var/www/core-bitercash$ redis-cli --raw 127.0.0.1:6379> get xx جيد 127.0.0.1:6379>
Yes it's work, but for phpRedis is don't work. Is return: جيد
the value saved in redis.
I don't know how to connect with --raw option for phpRedis lib or haw to decode the text "جيØ" in php.