criticalsystems Posted July 12, 2006 Share Posted July 12, 2006 I have written a PHP script that logs into a site and retrieves a file with cURL. The trouble is that when I try to add the string to other text it has it seems extra charactes there. an example is "textbox16戼㹲琀攀砀琀戀漀砀㠀㰀牢>textbox204戼㹲琀攀砀琀戀漀砀㈀". I am quite sure that the caracter encoding is different for some reason but I am unsure of how to fix it. Link to comment https://forums.phpfreaks.com/topic/14355-curl-and-string-problems/ Share on other sites More sharing options...
framework Posted July 10, 2008 Share Posted July 10, 2008 try converting to UTF8 using this code.... $c is the curl output html codes._____________________________________________________________preg_match( '@<meta\s+http-equiv="Content-Type"\s+content="([\w/]+)(;\s+charset=([^\s"]+))?@i', $c, $matches );$encoding = $matches[3]; $utf8_content = iconv($encoding, "utf-8", $c );_____________________________________________________________ Link to comment https://forums.phpfreaks.com/topic/14355-curl-and-string-problems/#findComment-586048 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.