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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T16:38:04+00:00 2026-05-27T16:38:04+00:00

I am using php to parse an XML file, but I get an error

  • 0

I am using php to parse an XML file, but I get an error message when attempting to display a formatted number:

Warning: number_format() expects parameter 1 to be double, object given in /home/chesspro/public_html/UNYCL/people-8.php on line 45

<?php 
$xml = simplexml_load_file('Rochester_1.xml');

foreach($xml->meet as $item) {

    print '<table class="basic report tableland brown_gradient"><thead>';
    print '<tr><th class="R-align">Board</th><th class="L-align">'.$item->visitor.'</th>';

    $subtotal = 0;
    foreach($item->match as $temp) {$subtotal = $subtotal + $temp->white->score;}
    print "<th>" .number_format($subtotal,1). "</th>";

    $subtotal = 0;
    foreach($item->match as $temp) {$subtotal = $subtotal + $temp->black->score;}
    print "<th>" .number_format($subtotal,1). "</th>";

    print '<th class="L-align">'.$item->home.'</th>';

    print '</tr><tbody>';

    foreach($item->match as $game) {

    print '<tr><td class="R-align">'. $game->board . "</td>";
    print '<td>'. $game->white->player."</td>";

    //Here is error: note that number is sometimes 0
        $X = $game->white->score;
        print '<td>'. number_format($X) ."</td>";

    print '<td>'. $game->black->score."</td>";       
    print '<td class="L-align">'. $game->black->player."</td>";

    print "</tr>";}
print '</table>';}
?>

Now can I fix this? I need one point of decimal precision (X.X) although some numbers are integers like “7” which I want to format and display as “7.0” Note that I am using a near current php version 5.3.4

  • 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-27T16:38:05+00:00Added an answer on May 27, 2026 at 4:38 pm
    print '<td>'. number_format($X, 1) ."</td>";
    

    See http://php.net/manual/en/function.number-format.php

    If this doesn’t work try type casting: https://www.php.net/manual/en/language.types.type-juggling.php#language.types.typecasting

    $X = (float)$game->white->score;
    print '<td>'. number_format($X) ."</td>";
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to parse an XML file using PHP, but I get an error
I have an XML file which I need to parse using PHP and send
I am using php's simple xml and xpath to parse an rdf xml file
I'm trying to parse a moderately large XML file (6mb) in php using simpleXML.
I'm using a PHP script with SimpleXML to parse an XML feed. I have
I am using the XPath in PHP 5 to parse a XML document. The
I am trying to parse an xml document I created in a php file
Hi Im trying to parse an xml feed using simplexml in php. The xml
Using PHP, how do I get an entire subset of nodes from an XML
I download an XML-file, I generate using PHP, that looks similar to this <?xml

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.