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

  • Home
  • SEARCH
  • 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 3809794
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 19, 20262026-05-19T15:21:38+00:00 2026-05-19T15:21:38+00:00

I have bunch of files that are not in UTF-8 encoding and I’m converting

  • 0

I have bunch of files that are not in UTF-8 encoding and I’m converting a site to UTF-8 encoding.

I’m using simple script for files that I want to save in UTF-8, but the files are saved in old encoding:

header('Content-type: text/html; charset=utf-8');
mb_internal_encoding('UTF-8');
$fpath = "folder";
$d = dir($fpath);
while (False !== ($a = $d->read()))
{
    if ($a != '.' and $a != '..')
    {
        $npath = $fpath . '/' . $a;

        $data = file_get_contents($npath);

        file_put_contents('tempfolder/' . $a, $data);
    }
}

How can I save files in UTF-8 encoding?

  • 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-19T15:21:38+00:00Added an answer on May 19, 2026 at 3:21 pm

    file_get_contents() and file_put_contents() will not magically convert encoding.

    You have to convert the string explicitly; for example with iconv() or mb_convert_encoding().

    Try this:

    $data = file_get_contents($npath);
    $data = mb_convert_encoding($data, 'UTF-8', 'OLD-ENCODING');
    file_put_contents('tempfolder/' . $a, $data);
    

    Or alternatively, with PHP’s stream filters:

    $fd = fopen($file, 'r');
    stream_filter_append($fd, 'convert.iconv.UTF-8/OLD-ENCODING');
    stream_copy_to_stream($fd, fopen($output, 'w'));
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a php script that transfers a bunch of files between servers with
I have a bunch of Yaml configuration files that I want to convert to
I have a bunch of encrypted files that I want to decrypt (duh). I
I have a bunch of files that I normally want to ignore so I
I have bunch of EPS vector files that I want to convert to Xaml
I have written a script that goes through a bunch of files and snips
I have a bunch of ancillary XML and XSLT files that I want to
I have a bunch of XML files that are declared as encoding=IBM1047 but they
I have a bunch of files that were named in a somewhat standard format.
I have a bunch of html files that come with my app and are

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.