php Ayrıştırma hatası: `T_STRING 'veya` T_VARIABLE' veya CodeIgniter'daki `T_NUM_STRING 'bekliyor, hata ayrıştırmak?

0 Cevap php

Ben XML okumak sorun yaşıyorum, ben this tutorial izledi, ve aşağıdaki kodu oluşturulur.

Benim denetleyicisi açtığımda olsun

Parse error: parse error, expecting T_STRING' or T_VARIABLE 'veya `T_NUM_STRING' C: \ wamp \ www \ ci_doctrine system \ application \ kontrolörleri \ \ welcome.php on line 49

line 49 is foreach($xmlData['item'] as $row) Ben ne herhangi bir fikir, öneri yapacağımı bilmiyorum? gerçekten takdir yardım

Bu benim kodudur:

<?php

class Welcome extends Controller {

/*function Welcome()
{
    parent::Controller();   
}

*/

function index()
{


    //$this->load->view('welcome_message');


    //load the parser library
    $this->load->library('parser');

           $data['title'] = 'Parsing XML using Simplexml class of CodeIgniter';

           $data['products'] = $this->_getXML('myxml');

       $this->parser->parse('table_view', $data);

    //$this->load->library('parser');
        //$data['title'] = 'Parsing XML using SimpleXML class of CodeIgniter';

}

function _getXML($fname)
{

            $filename = $fname.'.xml';
            $xmlfile="“C:\wamp\www\" . $filename;
            $xmlRaw = file_get_contents($xmlfile);

            $this->load->library('simplexml');
            $xmlData = $this->simplexml->xml_parse($xmlRaw);

            foreach($xmlData['item'] as $row)
            {

        $result .= '<tr>';
        $result .= '<td>'.$row['id'].'</td>';
        $result .= '<td>'.$row['name'].'</td>';
        $result .= '<td>'.$row['category'].'</td>';
        $result .= '<td>$ '.$row['price'].'</td>';
        $result .= '</tr>';

            }
             return $result;
    }

} 
//End of file welcome.php 
// Location: ./system/application/controllers/welcome.php 

?>

<item>
    <id>1</id>
    <name>iPhone</name>
    <category>Mobile</category>
    <price>300</price>
</item>

<item>
    <id>2</id>
    <name>iMac</name>
    <category>Desktop Computers</category>
    <price>2500</price>
</item>

<item>
    <id>3</id>
    <name>MacBook Pro</name>
    <category>Mobile PC</category>
    <price>2000</price>
</item>

<item>
    <id>4</id>
    <name>iTouch</name>
    <category>Gadgets</category>
    <price>150</price>
</item>

<item>
    <id>5</id>
    <name>Wii</name>
    <category>Gaming</category>
    <price>1250</price>
</item>

<item>
    <id>6</id>
    <name>Time Capsule</name>
    <category>Acessories</category>
    <price>1000</price>
</item>

<item>
    <id>7</id>
    <name>Apple TV</name>
    <category>Gadgets</category>
    <price>800</price>
</item>

0 Cevap