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 7657015
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T12:55:01+00:00 2026-05-31T12:55:01+00:00

I have an XML file which I’m parsing with SimpleXML in php. The first

  • 0

I have an XML file which I’m parsing with SimpleXML in php. The first line is

<?xml version="1.0" encoding="iso-8859-1"?>

The result of the parse is stored in $xml, if I do:

echo $xml->asXML();

then the entire file displays perfectly.

But if I dig into the structure in anyway, I get Â’s everwhere, eg:

echo $xml->Chapter->asXML();

Inside some of the XML elements there is MathML (<math>), this is where the Â’s occur.
For example the character ∈ is replaced by a Â.

How can I parse the XML file but not lose the MathML characters?

  • 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-31T12:55:02+00:00Added an answer on May 31, 2026 at 12:55 pm

    ∈ is not a character that can be represented in ISO 8859-1, change your XML to say that it is encoded with UTF-8.

    To give an example demonstrating the problem.

    $x = simplexml_load_string('<?xml version="1.0" encoding="iso-8859-1"?>
    <example><math>∈</math></example>');
    echo $x->math, PHP_EOL;
    
    $x = simplexml_load_string('<?xml version="1.0" encoding="utf-8"?>
    <example><math>∈</math></example>');
    echo $x->math, PHP_EOL;
    

    Outputs (as UTF-8) the following.

    â
    ∈
    

    SimpleXML will try to convert to UTF-8 when the encoding is set to something different. It is always a good idea not to give it that work to do when the input is already UTF-8 encoded and the encoding declaration is incorrect.


    Also be sure that PHP itself is outputting UTF-8, and telling the browser that this is the case!

    You can do this by setting the default_charset INI option (in your php.ini or with ini_set()), or sending the correct Content-Type header (header('Content-Type: text/html; charset=utf-8')).

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have an XML file which contains some data as given. <?xml version=1.0 encoding=UTF-8
i have an xml file which contain some data like: <?xml version=1.0 encoding=utf-8 ?>
I have an XML file which looks like this : <?xml version=1.0 encoding=UTF-8?> <resultset
Say I have an XML file which looks like this: <?xml version=1.0 encoding=UTF-8?> <Project
I have an xml file which looks like this <?xml version=1.0 encoding=UTF-8 ?> <BulkDataExchangeRequests
I have an XML file which I need to parse using PHP and send
I have XML file which looks like this: <?xml version=1.0?> <results> <row id=100><name>name blah</name></row>
I have an XML file which contains lists of stores, a simplified version is
i have a xsl file as below: -------Begin------ <?xml version=1.0 encoding=utf-8?> <xsl:stylesheet version=2.0 xmlns:xsl=http://www.w3.org/1999/XSL/Transform
I have an XML file which XML parser choke on. A part of it

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.