-2
votes
2answers
29 views

PDO query returns lots of \uXXXX character codes which I can't convert to unicode characters

I have a MySQL database table in which I store the names of countries in different languages, and I can't get the data to display in unicode characters - I can only get \uXXXX codes displayed where ...
0
votes
1answer
30 views

Removing invalid UTF-8 from a multidimensional input array?

The $_POST array can be multi-dimensional. I have code that removes invalid UTF, but also completely removes the sub arrays. Running this code: print_r($_POST); $UTF8_Input = ...
1
vote
1answer
50 views

MySQL PHP - how to display non readable character stored in database

I'm working with ZendFramework 2, here is my setting ./config/autoload/global.php 'db' => array( 'driver' => 'Pdo', 'dsn' => 'mysql:dbname=littlepinktree;host=localhost', ...
0
votes
2answers
40 views

MySQL Unicode Data

I have data in a table that looks like this (based on SQLYog): (1) µéÁÂÓ ·Óá¡§ But when the forum system that is reading the data shows it on screen it looks like this: (2) ต้มยำ ทำแกง The second ...
1
vote
2answers
92 views

Detect Encoding and Convert Everything to UTF-8 with PHP

I want to extract various data from URLs that will be converted to UTF-8 no matter what the encoding methods is used in original page (or at least it will work on most of the source encodings). So, ...
-3
votes
1answer
40 views

Unicode character not converted in HTML format [closed]

i am going to elaborate my question in details so that someone help me out. i have multilingual site. a;; language translation is stored in language ini file with key/value pair e.g. ...
0
votes
0answers
15 views

Issues uploading files via php with different encodings (UCS-2LE)

I'm creating a PHP website that will parse data from a combat log. However when I went to upload the combat log it wouldn't work. Looking at the combat log with notepad++ it tells me that it is using ...
0
votes
1answer
36 views

Creating a UTF-8 string from hexadecimal code

In C++, it's possible create a UTF-8 string using this kind of notation: "\uD840\uDC50". However this doesn't work in PHP. Is there a similar notation? If not, is there any built-in way to create a ...
0
votes
0answers
72 views

An error occurred translating the connection string to UTF-16 in PHP SQL server

I'm using PHP 5.2.9 and Micorsoft SQL Server 2008 R2 with Apache, and have a PHP line of code like this <?php $serverName = "xxx-xxxxxxxxxxx\xxx" $connection = array("Database"=>"example"); $conn ...
3
votes
1answer
73 views

Catalan characters à and è don't work with php imagestringup - how to decode them?

When I call the below code with $text with Spanish I got correct text with image but When I call the same code with $text with Catalan I don't get correct text in the image. I understand that Spanish ...
0
votes
1answer
68 views

Why is json_decode returning weird characters? [duplicate]

Why does the following code: var_dump(json_decode('"\u201A"')); echo json_decode('"\u201A"'); Print out: string(3) "‚" ‚ Instead of: string(1) "‚" ‚ Here is the link to the unicode ...
3
votes
2answers
126 views

How to convert unicode to arabic characters in php?

let us say that the string is $uni_str="06280628002006280628"; In Arabic,it is: بب بب so , how can i convert it in php without using html like: for($i=0; $i<strlen($uni_str); $i+=4) ...
0
votes
1answer
40 views

mb_convert_case deleting Unicode characters? [duplicate]

My code: echo mb_convert_case('Björk Guðmundsdóttir', MB_CASE_UPPER, 'UTF-8'); echo mb_convert_case('Björk Guðmundsdóttir', MB_CASE_LOWER, 'UTF-8'); and the output: BJRK GUMUNDSDTTIR bjrk ...
0
votes
1answer
83 views

utf8 not working with mysql

When I echo arabic characters they appear fine but If I echo them from the database they appear as question marks. Here is what I did so far but it is still not working: charset setting now is: | ...
1
vote
1answer
57 views

The Actual Unicode Characters automatically converted to Numeric values using DOMDocument->saveHTML()

I am using the following function to get the inner html of html string function DOMinnerHTML($element) { $innerHTML = ""; $children = $element->childNodes; foreach ($children as ...
1
vote
1answer
45 views

Is there any solution for unicode numeric symbols conversion to actual characters

I am about to pull my hairs on this issue. If some one has any solution. I have an html string $html = '<div id="main">What is going on ...
-1
votes
3answers
83 views

How to Convert Html Codes to Relevant Unicode Characters

Actually, I have googled a Lot, And I have explored this forum too, but this is my second day, and I could not find the solution. My Problem is that I want to convert the Html Codes ...
0
votes
3answers
102 views

How to convert HTML code of Unicode to Real Unicode Character

Is there any php function that can convert &#1575;&#1576;&#1576; to it equallent unicode character ت ب ا I have googled a lot, But I think there is no any PHP built in function ...
1
vote
4answers
137 views

Why Unicode Data is stored in numeric form in mysql database

I have this following $html = <div>ياں ان کي پرائيويٹ ليمٹڈ کمپنياں ہيں</div> But it is being stored in the mysql database as following format &#1578;&#1608; ...
0
votes
2answers
36 views

PHP DOMDocument is not rendering Unicode Characters Properly

I am using CKEditor for letting the user to post comments, user can also put the unicode characters in the comment box. When I submit the Form and Check the $_POST["reply"], the unicode characters ...
-2
votes
1answer
41 views

PHP: Overriding default string functions if you only intend to use your software [closed]

This is kind of a follow up question to some of the questions I've asked recently, but let's say I'm using my own software and no external frameworks or libraries. Is it still a bad idea to override ...
0
votes
2answers
35 views

Overriding PHP's Default String Functions with mb_string functions

So I've posted several questions related to making already existing software written in PHP to be updated to support unicode / utf8. One of the solutions is to override PHP's default string functions ...
2
votes
2answers
95 views

Updating PHP CMS Site to fully support unicode / utf8

Some years ago, I built a good custom PHP CMS Site, but I overlooked one important issue: unicode support. This was primarily due to the fact that at the time, the users were English-speaking and that ...
0
votes
1answer
88 views

Replace Invalid UTF-8, Not Replace

Evening, I have HTML files that I am cleaning. These have some invalid Unicode characters that appear in my text editor like: /B7 I want to replace these with either the character they should be, ...
0
votes
2answers
88 views

PHP Unicode Character Detection

I'm trying to get contents from a certain webpage , and replace the next mark : ’ with another substring. It's not a regular apostrophe and even substr_count($content,"’") return 0. It seems like I ...
0
votes
0answers
62 views

Working with unicode characters in mysql and php

I am passing my mysql query from PHP to mysql using mysql_query. Let's say I have two names Théo and Theo in my database stored. Now I am getting both The names in each of these queries: ...
1
vote
1answer
149 views

How to properly write unicode words to image using PHP imgttftext() function

I am trying to write some Urdu text on an image using imgttftext() function of PHP. It does not display the characters unless I convert the text using the following code: function convert($text){ ...
1
vote
2answers
89 views

Unicode not displaying correctly in my page

In my html5 page, around 80% of the strings are unicode. Worked perfectly with my local server. When uploaded to my online server, the pages are not displaying the unicode contents correctly. ...
0
votes
2answers
60 views

rendering � in php after using substr method [duplicate]

I need to select just 180 char from mysql database by php and show read more link for users that want to read total text. So I read all text from mysql and use substr() function like this. ...
0
votes
1answer
92 views

Replacing English Digits with Persian Digits by their Unicode character codes with a condition

I wrote this PHP Function: <?php function persian_digits($text) { $persian_unicode = array( "1" => '&#x6F1;', "2" => '&#x6F2;', ...
0
votes
1answer
90 views

PHP: including file written in Bengali does not show text while writing directly in the main page does show up

For index.php, Doctype and HTML tags are as follows: <!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Transitional//EN' 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd'> <html ...
5
votes
1answer
79 views

Convert from “Java Escape” to Index in PHP

are there any form to convert a string in Java Escape to Index unicode in PHP? I have this string: $ str = "\ud83d\ude0e"; And I need obtain the portion after U+: U+1F60E Or the python code: ...
-2
votes
1answer
98 views

output gibberish unicode text properly from mysql database [duplicate]

In my mysql database field the unicode text are like this काठमाडौà¤, २४ माघ / संविधानसभा सदसà¥à¤¯à¤•ो रिकà¥à¤¤ ६ सिटका ...
0
votes
0answers
109 views

Unicode to ANSI Conversion Errors

I eventually found out that the problem posted in my previous thread was related to the encoding of the text file I used. I think I have attempted all possible methods for converting Unicode string to ...
-4
votes
1answer
80 views

gibberish text in mysql database [closed]

In my mysql database field some of the text are like this काठमाडौँ, २४ माघ / संविधानसभा सदस्यको रिक्त ६ सिटका ...
0
votes
1answer
210 views

How to read unicode text-file in PHP?

I have some trouble reading in a text file (saved in Unicode UTF16-LE) in my PHP script. My PHP script is saved (for some reasons) in UTF-8. Here is my code: $lines = file("./somedir/$filename"); ...
0
votes
1answer
84 views

how to create character code from number code in php using json

This is my code: <?php error_reporting(E_ALL); ini_set("display_errors", 1); $form_num = $_GET['num']; echo '<form name="creative" action = ...
0
votes
1answer
183 views

how to convert from Unicode to UTF-8 in PHP?

I saved file named "File1.txt" with the content (English and Hebrew) "שלום hello". its encode is Unicode. when I do "readfile" and send a header: Content-type: text/plain;charset=utf-8 the Hebrew ...
0
votes
2answers
342 views

Converting Unicode characters into the equivalent ASCII ones

I need to "flatten out" a number of Unicode strings for the purposes of indexing and searching. For example, I need to convert GötheФ€ into ASCII. The last two characters have no close representations ...
3
votes
3answers
178 views

PHP, str_pad unicode issue

I'm just trying to make fixed the $str to 5 characters, but couldn't. $str = "nü"; echo str_pad($str, 5, "ü"); // give nüü I know that's an unicode issue and searched a lot but no luck. I tried ...
2
votes
1answer
438 views

MySQL UTF8 for Chrome, UTF8 for IE, but HEADER UTF8 for Chrome and UTF-8 for IE?

With this: <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> IE displays properly Chrome displays properly With this: <meta http-equiv="Content-Type" ...
0
votes
2answers
331 views

PHP preg_replace match special characters but not utf8 letters

I have some titles, for example: should? be fenêtre! ﻟﻔﺮﻧﺴﻴﺔ-تعاني!!! What regex expression can i use to remove special characters like: ?,!,^ I need to get those titles like this: ...
0
votes
2answers
132 views

PHP PCRE unicode escape

I am working with a regexp database that contains expressions with "\uXXXX", which, of course, breaks PHP PCRE. So, two part question, is there a way to tell PCRE to accept those sequences? And ...
0
votes
0answers
137 views

fgetcsv and encoding issues

ok so I'm doing this: $output = '"7" "asdfsafsaf." """,,,,\+-/*&"""""""""""""""",,,,,,,,,""""""""""""""""\n\n\nlallaa""" "8" "Assignment Name" "яg;m�R lallalalal" "86" "Cancel" "匿名 cancellll" ...
1
vote
1answer
82 views

PHP - Bytes to UTF8 character?

I need to process some emails and these contain character phrases such as: =E2=82=AC which apparently are the bytes for a euro sign. I also get things such as: VALIGN=3D"top" which I'm not ...
1
vote
2answers
418 views

Convert Unicode from JSON string with PHP

I've been reading up on a few sollutions but have not managed to get anything to work as yet. I have a JSON string that I read in from an API call and it unicode characters - \u00c2\u00a3 for example ...
4
votes
2answers
114 views

How to use file_get_contents() with non-English symbols in URL?

I'm getting this error when I try to access non-English (Unicode) URLs using PHP's file_get_contents() function. The URL was: ...
1
vote
1answer
98 views

Comparing Unicode Characters in PHP

I am unable to compare two unicode characters that to my mind should be exactly the same. I suspect that somehow they are encoded differently, but don't know how to change them to the same encoding. ...
0
votes
0answers
169 views

Import Comma Delimited Unicode Text file to PHP

Text Sample in mytxt.txt Budu Bawa Pathana,බුදු බව පතනා,budu-bawa-pathana Budu Piya Mage,බුදු පියා මගේ,budu-piya-mage Dewathi Deva Raja,දෙවැති දේව රාජා,dewathi-deva-raja Domnase Mulawe,දොම්නසේ ...
1
vote
1answer
63 views

\b modifier won't work for Unicode characters

I want to replace an exact word using preg_replace by \b modifier as mentioned in this question. But it seems that won't work for Unicode characters such as Persian and Arabic. This example works: ...

1 2 3 4 5 12