Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6783623
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T16:53:18+00:00 2026-05-26T16:53:18+00:00

I am trying to loop through a set of javascript files, detect their encoding

  • 0

I am trying to loop through a set of javascript files, detect their encoding and then save them both in latin1 and in utf8 format. So far I have really gotten stuck at trying to get PHP to convert a UTF-8 file to Latin1. I have tried several different methods of encoding the data after searching around but nothing seems to work.

Here is what I am doing:

//Read file 
$fileIn = fopen($dirName . $fileNameIn, 'r');
$dataIn = fread($fileIn, filesize($dirName . $fileNameIn));
fclose($fileIn);

$encoding = mb_detect_encoding($dataIn);
echo "Encoding in: " . $encoding . "\r\n";

$dataOut = utf8_decode($dataIn);

echo "Encoding after: " . mb_detect_encoding($dataOut) . "\r\n";

Both of these printouts print UTF-8 as the detected encoding. Any ideas?

Could this have anything to do with the fact that the system default on my ubuntu box is UTF-8?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T16:53:19+00:00Added an answer on May 26, 2026 at 4:53 pm

    You might want to take a look at the iconv function (http://www.php.net/manual/en/book.iconv.php):

    string iconv ( string $in_charset , string $out_charset , string $str )
    

    Therefore, try writing

     $dataOut = iconv($encoding, "ISO-8859-1", $dataIn);
    

    and see if that fixes the problem. Also, try using strict mode in mb_detect_encoding:

    mb_detect_encoding($dataOut, mb_detect_order(), true);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am trying to loop through a directory of text files and combine them
I'm trying to loop through a set of div tags and fade them in
I'm trying to use openmp to multithread a loop through std::set. When I write
Trying to create a 1-liner to loop through a mysql result set. Example: $sql
I'm trying to loop through a set of cells using VBA in a worksheet
Hi I'm trying to loop through a array and set a keys value. Very
I'm trying to take an ADO Recordset and then loop through it to parse
Using Javascript. I'm trying to loop through an array encoded with JSON. Here is
I am trying to loop through an array to take certain values and set
I am trying use an iterator to go through a set and then do

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.