如何使用simpleXML为xml节点执行字符串替换?

时间:2013-08-19 10:30:43

标签: php xml str-replace

我想知道你是否可以提供帮助。下面的代码从外部XML文件中提取XML数据,然后将其重新格式化为表数据。一切都很完美。但是,需要更改XML文件中的某些数据,因此可以为下面的每个单独节点使用str_replace或preg_replace吗?我不知道如何为每个节点编写str_replace。我想也许这样的事情“ {$ hour-> weatherCod} .str_replace(10,Sun); ”会起作用,但事实并非如此。请不要告诉我正确的格式?我需要一些简单的东西,因为我更像是一个动作脚本而不是php。

非常感谢你能提供帮助!

<?php
// load SimpleXML
$data = new SimpleXMLElement('xml_file.xml', null, true);
foreach($data->weather as $weather)
{
foreach ($weather->hourly as $hour)
{
echo <<<EOF
    <tr>
            <td>{$weather->day}</td>
            <td>{$weather->Ctemp1}&deg;c</td>
            <td>{$weather->Ctemp2}&deg;c</td>
            <td>{$hour->time}</td>
            <td>{$hour->tempC}&deg;c</td>
            <td>{$hour->tempF}&deg;f</td>
            <td>{$hour->windMiles}mph</td>
            <td>{$hour->windKmph}km/h</td>
            <td>{$hour->windDegree}&deg;</td>
            <td>{$hour->winddir}</td>
            <td>{$hour->weatherCod}</td>            
            <td>{$hour->weatherIconUrl}</td>
            <td>{$hour->precipMM}mm</td>
            <td>{$hour->humidity}%</td>
            <td>{$hour->visibility}</td>
            <td>{$hour->pressure}mb</td>
            <td>{$hour->cloudcover}</td>
            <td>{$hour->sigHeight_m}m</td>
            <td>{$hour->swellHeight_m}m</td>
            <td>{$hour->swellDir}&deg;</td>
            <td>{$hour->swellPeriod_secs}s</td>
            <td>{$hour->waterTemp_C}&deg;c</td>
            <td>{$hour->waterTemp_F}&deg;f</td>
    </tr>
EOF;
}
}
echo '</table>';
?>

1 个答案:

答案 0 :(得分:0)

实际上您尝试使用{$ hour-&gt; weatherCod}。 str_replace(10,Sun); ?

看看它是如何工作的,它需要3个参数而不是2个。 http://php.net/manual/en/function.str-replace.php

所以可能是这样的

str_replace (10, Sun, $hour->weatherCod);