Warning: file_get_contents(/data/phpspider/zhask/data//catemap/0/xml/12.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
编码PHP脚本以将CSV映射到XML_Php_Xml_Csv - Fatal编程技术网

编码PHP脚本以将CSV映射到XML

编码PHP脚本以将CSV映射到XML,php,xml,csv,Php,Xml,Csv,我有一个CSV文件 Quotes.csv quote|source|dob-dod|wplink|wpimg|category There is no remedy but to love more.|Henry David Thoreau|1817-1862|http://en.wikipedia.org/wiki/Henry_David_Thoreau|http://upload.wikimedia.org/wikipedia/commons/f/f0/Benjamin_D._Maxham_

我有一个CSV文件

Quotes.csv

quote|source|dob-dod|wplink|wpimg|category
There is no remedy but to love more.|Henry David Thoreau|1817-1862|http://en.wikipedia.org/wiki/Henry_David_Thoreau|http://upload.wikimedia.org/wikipedia/commons/f/f0/Benjamin_D._Maxham_-_Henry_David_Thoreau_-_Restored.jpg|romantic
There is always some madness in love. But there is also always some reason in madness.|Friedrich Nietzsche|1844-1900|http://en.wikipedia.org/wiki/Friedrich_Nietzsche|http://upload.wikimedia.org/wikipedia/commons/1/1b/Nietzsche187a.jpg|romantic
Love does not consist in gazing at each other, but in looking outward together in the same direction.|Antoine de Saint-Exupery|1900-1944|http://en.wikipedia.org/wiki/Antoine_de_Saint-Exupery|http://upload.wikimedia.org/wikipedia/commons/7/7f/11exupery-inline1-500.jpg|romantic
Take away love and our earth is a tomb.|Robert Browning|1812-1889|http://en.wikipedia.org/wiki/Robert_Browning|http://upload.wikimedia.org/wikipedia/commons/5/58/Robert_Browning_by_Herbert_Rose_Barraud_c1888.jpg|humerous
Work is the curse of the drinking classes.|Oscar Wilde|1854-1900|http://en.wikipedia.org/wiki/Oscar_wilde|http://upload.wikimedia.org/wikipedia/commons/a/a7/Oscar_Wilde_Sarony.jpg|humerous
A computer once beat me at chess, but it was no match for me at kick boxing.|Emo Philips|1956-|http://en.wikipedia.org/wiki/Emo_Philips|http://upload.wikimedia.org/wikipedia/commons/7/76/Emo_Philips_2002_cropped.jpg|humerous
Women should be obscene and not heard.|Groucho Marx|1890-1977|http://en.wikipedia.org/wiki/Groucho_Marx|http://upload.wikimedia.org/wikipedia/commons/6/68/Groucho_Marx_-_portrait.jpg|humerous
An ideal form of government is democracy tempered with assassination.|Voltaire|1694-1778|http://en.wikipedia.org/wiki/Voltaire|http://upload.wikimedia.org/wikipedia/commons/c/c2/D%27apr%C3%A8s_Maurice_Quentin_de_La_Tour%2C_Portrait_de_Voltaire%2C_d%C3%A9tail_du_visage_%28ch%C3%A2teau_de_Ferney%29.jpg|political
People have only as much liberty as they have the intelligence to want and the courage to take.|Emma Goldman|1869-1940|https://en.wikipedia.org/wiki/Emma_Goldman|https://upload.wikimedia.org/wikipedia/commons/0/03/Emma_Goldman_seated.jpg|political
Religion is what keeps the poor from murdering the rich.|Napoleon Bonaparte|1769-1821|http://en.wikipedia.org/wiki/Napoleon|http://upload.wikimedia.org/wikipedia/commons/5/50/Jacques-Louis_David_-_The_Emperor_Napoleon_in_His_Study_at_the_Tuileries_-_Google_Art_Project.jpg|political
Any dictator would admire the uniformity and obedience of the [U.S.] media.|Noam Chomsky|1928-|http://en.wikipedia.org/wiki/Noam_Chomsky|https://upload.wikimedia.org/wikipedia/commons/a/a9/Noam_Chomsky_portrait_2017.jpg|political
Isn't it ironic that the proprietary software developers call us communists? We are the ones who have provided for a free market, where they allow only monopoly. ... if the users chooses this proprietary software package, he then falls into this monopoly for support ... the only way to escape from monopoly is to escape from proprietary software, and that is what the free software movement is all about. We want you to escape and our work is to help you escape. We hope you will escape to the free world. The free world is the new continent in cyberspace that we have built so we can live here in freedom. It's impossible to live in freedom in the old world of cyberspace, where every program has its feudal lord that bullies and mistreats the users. So, to live in freedom we have to build a new continent. Because this is a virtual continent, it has room for everyone, and there are no immigration restrictions. And because there were never indigenous peoples in cyberspace, there is also no issue of taking away their land. So everyone is welcome in the free world, come to the free world, live with us in freedom. The free software movement aims for the liberation of cyberspace and everyone in it.|Richard Stallman|1953-|http://en.wikipedia.org/wiki/Richard_Stallman|https://upload.wikimedia.org/wikipedia/commons/2/28/Richard_Stallman_at_LibrePlanet_2019.jpg|political
The paradise of the rich is made out of the hell of the poor.|Victor Hugo|1802-1885|https://en.wikipedia.org/wiki/Victor_Hugo|https://upload.wikimedia.org/wikipedia/commons/e/e6/Victor_Hugo_by_%C3%89tienne_Carjat_1876_-_full.jpg|political
我正在尝试编写一个php脚本来将其转换为xml,但是我目前遇到了这个错误

未捕获的DOMEException:无效字符错误

在这一行:

$child=$doc->createElement(修剪($header))

这是我当前的php代码,如何让这个脚本工作

<?php

error_reporting(E_ALL | E_STRICT);
ini_set('display_errors', true);
ini_set('auto_detect_line_endings', true);

$inputFilename    = 'quotes.csv';
$outputFilename   = 'test.xml';

// Open csv to read
$inputFile  = fopen($inputFilename, 'rt');

// Get the headers of the file
$headers = fgetcsv($inputFile);

// Create a new dom document with pretty formatting
$doc  = new DomDocument();
$doc->formatOutput   = true;

// Add a root node to the document
$root = $doc->createElement('rows');
$root = $doc->appendChild($root);

// Loop through each row creating a <row> node with the correct data
while (($row = fgetcsv($inputFile)) !== FALSE)
{
    $container = $doc->createElement('row');
    foreach($headers as $i => $header)
    {
    $child = $doc->createElement(trim($header));
       $child = $container->appendChild($child);
       $value = $doc->createTextNode($row[$i]);
       $value = $child->appendChild($value);
    }

    $root->appendChild($container);
 }

 $strxml = $doc->saveXML();

?>
formatOutput=true;
//将根节点添加到文档中
$root=$doc->createElement('rows');
$root=$doc->appendChild($root);
//循环遍历每一行,创建一个具有正确数据的节点
while(($row=fgetcsv($inputFile))!==FALSE)
{
$container=$doc->createElement('row');
foreach($i=>$header形式的标题)
{
$child=$doc->createElement(修剪($header));
$child=$container->appendChild($child);
$value=$doc->createTextNode($row[$i]);
$value=$child->appendChild($value);
}
$root->appendChild($container);
}
$strxml=$doc->saveXML();
?>
目标输出


<?xml version="1.0" encoding="UTF-8"?>
<quotes>
  <record id="1">
    <quote>There is no remedy but to love more.</quote>
    <source>Henry David Thoreau</source>
    <dob-dod>1817-1862</dob-dod>
    <wplink>http://en.wikipedia.org/wiki/Henry_David_Thoreau</wplink>
    <wpimg>http://upload.wikimedia.org/wikipedia/commons/f/f0/Benjamin_D._Maxham_-_Henry_David_Thoreau_-_Restored.jpg</wpimg>
    <category>romantic</category>
  </record>
    
  <record id="2">
    <quote>There is always some madness in love. But there is also always some reason in madness.</quote>
    <source>Friedrich Nietzsche</source>
    <dob-dod>1844-1900</dob-dod>
    <wplink>http://en.wikipedia.org/wiki/Friedrich_Nietzsche</wplink>
    <wpimg>http://upload.wikimedia.org/wikipedia/commons/1/1b/Nietzsche187a.jpg</wpimg>
    <category>romantic</category>
  </record>
    
  <record id="3">
    <quote>Love does not consist in gazing at each other, but in looking outward together in the same direction.</quote>
    <source>Antoine de Saint-Exupery</source>
    <dob-dod>1900-1944</dob-dod>
    <wplink>http://en.wikipedia.org/wiki/Antoine_de_Saint-Exupery</wplink>
    <wpimg>http://upload.wikimedia.org/wikipedia/commons/7/7f/11exupery-inline1-500.jpg</wpimg>
    <category>romantic</category>
  </record>
    
  <record id="4">
    <quote>Take away love and our earth is a tomb.</quote>
    <source>Robert Browning</source>
    <dob-dod>1812-1889</dob-dod>
    <wplink>http://en.wikipedia.org/wiki/Robert_Browning</wplink>
    <wpimg>http://upload.wikimedia.org/wikipedia/commons/5/58/Robert_Browning_by_Herbert_Rose_Barraud_c1888.jpg</wpimg>
    <category>humerous</category>
  </record>
    
  <record id="5">
    <quote>Work is the curse of the drinking classes.</quote>
    <source>Oscar Wilde</source>
    <dob-dod>1854-1900</dob-dod>
    <wplink>http://en.wikipedia.org/wiki/Oscar_wilde</wplink>
    <wpimg>http://upload.wikimedia.org/wikipedia/commons/a/a7/Oscar_Wilde_Sarony.jpg</wpimg>
    <category>humerous</category>
  </record>
    
  <record id="6">
    <quote>A computer once beat me at chess, but it was no match for me at kick boxing.</quote>
    <source>Emo Philips</source>
    <dob-dod>1956-</dob-dod>
    <wplink>http://en.wikipedia.org/wiki/Emo_Philips</wplink>
    <wpimg>http://upload.wikimedia.org/wikipedia/commons/7/76/Emo_Philips_2002_cropped.jpg</wpimg>
    <category>humerous</category>
  </record>
    
  <record id="7">
    <quote>Women should be obscene and not heard.</quote>
    <source>Groucho Marx</source>
    <dob-dod>1890-1977</dob-dod>
    <wplink>http://en.wikipedia.org/wiki/Groucho_Marx</wplink>
    <wpimg>http://upload.wikimedia.org/wikipedia/commons/6/68/Groucho_Marx_-_portrait.jpg</wpimg>
    <category>humerous</category>
  </record>
    
  <record id="8">
    <quote>An ideal form of government is democracy tempered with assassination.</quote>
    <source>Voltaire</source>
    <dob-dod>1694-1778</dob-dod>
    <wplink>http://en.wikipedia.org/wiki/Voltaire</wplink>
    <wpimg>http://upload.wikimedia.org/wikipedia/commons/c/c2/D%27apr%C3%A8s_Maurice_Quentin_de_La_Tour%2C_Portrait_de_Voltaire%2C_d%C3%A9tail_du_visage_%28ch%C3%A2teau_de_Ferney%29.jpg</wpimg>
    <category>political</category>
  </record>
    
  <record id="9">
    <quote>People have only as much liberty as they have the intelligence to want and the courage to take.</quote>
    <source>Emma Goldman</source>
    <dob-dod>1869-1940</dob-dod>
    <wplink>https://en.wikipedia.org/wiki/Emma_Goldman</wplink>
    <wpimg>https://upload.wikimedia.org/wikipedia/commons/0/03/Emma_Goldman_seated.jpg</wpimg>
    <category>political</category>
  </record>
    
  <record id="10">
    <quote>Religion is what keeps the poor from murdering the rich.</quote>
    <source>Napoleon Bonaparte</source>
    <dob-dod>1769-1821</dob-dod>
    <wplink>http://en.wikipedia.org/wiki/Napoleon</wplink>
    <wpimg>http://upload.wikimedia.org/wikipedia/commons/5/50/Jacques-Louis_David_-_The_Emperor_Napoleon_in_His_Study_at_the_Tuileries_-_Google_Art_Project.jpg</wpimg>
    <category>political</category>
  </record>
    
  <record id="11">
    <quote>Any dictator would admire the uniformity and obedience of the [U.S.] media.</quote>
    <source>Noam Chomsky</source>
    <dob-dod>1928-</dob-dod>
    <wplink>http://en.wikipedia.org/wiki/Noam_Chomsky</wplink>
    <wpimg>https://upload.wikimedia.org/wikipedia/commons/a/a9/Noam_Chomsky_portrait_2017.jpg</wpimg>
    <category>political</category>
  </record>
    
  <record id="12">
    <quote>Isn&apos;t it ironic that the proprietary software developers call us communists? We are the ones who have provided for a free market, where they allow only monopoly. ... if the users chooses this proprietary software package, he then falls into this monopoly for support ... the only way to escape from monopoly is to escape from proprietary software, and that is what the free software movement is all about. We want you to escape and our work is to help you escape. We hope you will escape to the free world. The free world is the new continent in cyberspace that we have built so we can live here in freedom. It&apos;s impossible to live in freedom in the old world of cyberspace, where every program has its feudal lord that bullies and mistreats the users. So, to live in freedom we have to build a new continent. Because this is a virtual continent, it has room for everyone, and there are no immigration restrictions. And because there were never indigenous peoples in cyberspace, there is also no issue of taking away their land. So everyone is welcome in the free world, come to the free world, live with us in freedom. The free software movement aims for the liberation of cyberspace and everyone in it.</quote>
    <source>Richard Stallman</source>
    <dob-dod>1953-</dob-dod>
    <wplink>http://en.wikipedia.org/wiki/Richard_Stallman</wplink>
    <wpimg>https://upload.wikimedia.org/wikipedia/commons/2/28/Richard_Stallman_at_LibrePlanet_2019.jpg</wpimg>
    <category>political</category>
  </record>
    
  <record id="13">
    <quote>The paradise of the rich is made out of the hell of the poor.</quote>
    <source>Victor Hugo</source>
    <dob-dod>1802-1885</dob-dod>
    <wplink>https://en.wikipedia.org/wiki/Victor_Hugo</wplink>
    <wpimg>https://upload.wikimedia.org/wikipedia/commons/e/e6/Victor_Hugo_by_%C3%89tienne_Carjat_1876_-_full.jpg</wpimg>
    <category>political</category>
  </record>
    
</quotes>

除了多爱,没有别的补救办法。
亨利·大卫·梭罗
1817-1862
http://en.wikipedia.org/wiki/Henry_David_Thoreau
http://upload.wikimedia.org/wikipedia/commons/f/f0/Benjamin_D._Maxham_-_Henry_David_Thoreau_-_Restored.jpg
浪漫的
爱情中总有一些疯狂。但疯狂也是有原因的。
弗里德里希·尼采
1844-1900
http://en.wikipedia.org/wiki/Friedrich_Nietzsche
http://upload.wikimedia.org/wikipedia/commons/1/1b/Nietzsche187a.jpg
浪漫的
爱不在于彼此凝视,而在于一起朝着同一个方向向外看。
安托万·德圣埃克苏佩里
1900-1944
http://en.wikipedia.org/wiki/Antoine_de_Saint-Exupery
http://upload.wikimedia.org/wikipedia/commons/7/7f/11exupery-inline1-500.jpg
浪漫的
拿走爱,我们的地球就是坟墓。
罗伯特·布朗宁
1812-1889
http://en.wikipedia.org/wiki/Robert_Browning
http://upload.wikimedia.org/wikipedia/commons/5/58/Robert_Browning_by_Herbert_Rose_Barraud_c1888.jpg
肱骨的
工作是饮酒课的祸根。
奥斯卡王尔德
1854-1900
http://en.wikipedia.org/wiki/Oscar_wilde
http://upload.wikimedia.org/wikipedia/commons/a/a7/Oscar_Wilde_Sarony.jpg
肱骨的
一台电脑曾经在国际象棋比赛中打败过我,但在拳击比赛中却不是我的对手。
飞利浦
1956-
http://en.wikipedia.org/wiki/Emo_Philips
http://upload.wikimedia.org/wikipedia/commons/7/76/Emo_Philips_2002_cropped.jpg
肱骨的
女人应该是淫秽的,不能被听到。
格劳乔·马克斯
1890-1977
http://en.wikipedia.org/wiki/Groucho_Marx
http://upload.wikimedia.org/wikipedia/commons/6/68/Groucho_Marx_-_portrait.jpg
肱骨的
理想的政府形式是民主加上暗杀。
伏尔泰
1694-1778
http://en.wikipedia.org/wiki/Voltaire
http://upload.wikimedia.org/wikipedia/commons/c/c2/D%27apr%C3%A8s_Maurice_Quentin_de_La_Tour%2C_Portrait_de_Voltaire%2C_d%C3%A9tail_du_visage_%28ch%C3%A2teau_de_Ferney%29.jpg
政治的
人们只有在拥有想要的智慧和勇气时才有自由。
埃玛·戈尔德曼
1869-1940
https://en.wikipedia.org/wiki/Emma_Goldman
https://upload.wikimedia.org/wikipedia/commons/0/03/Emma_Goldman_seated.jpg
政治的
宗教是阻止穷人谋杀富人的力量。
拿破仑·波拿巴
1769-1821
http://en.wikipedia.org/wiki/Napoleon
http://upload.wikimedia.org/wikipedia/commons/5/50/Jacques-Louis_David_-_The_Emperor_Napoleon_in_His_Study_at_the_Tuileries_-_Google_Art_Project.jpg
政治的
任何独裁者都会钦佩[美国]媒体的一致性和服从性。
诺姆·乔姆斯基
1928-
http://en.wikipedia.org/wiki/Noam_Chomsky
https://upload.wikimedia.org/wikipedia/commons/a/a9/Noam_Chomsky_portrait_2017.jpg
政治的
信息系统&apos;专有软件开发者称我们为共产主义者,这难道不具有讽刺意味吗?我们提供了一个自由市场,他们只允许垄断。。。如果用户选择了这个专有软件包,那么他就会陷入对支持的垄断。。。摆脱垄断的唯一途径是摆脱专有软件,这就是自由软件运动的全部内容。我们想让你逃走,我们的工作就是帮助你逃走。我们希望你能逃到自由世界。自由世界是我们建立的网络空间的新大陆,我们可以在这里自由生活。它&apos;It’在旧的网络世界里,不可能生活在自由之中,在那里,每一个程序都有一个欺负和虐待用户的封建领主。因此,为了生活在自由之中,我们必须建设一个新大陆。因为这是一个虚拟的大陆,每个人都有空间,而且没有移民限制。由于网络空间中从来没有土著民族,因此也不存在剥夺他们土地的问题。所以自由世界欢迎每个人,来到自由世界,与我们一起自由生活。自由软件运动旨在解放网络空间和网络中的每一个人。
理查德·斯泰尔曼
1953-
http://en.wikipedia.org/wiki/Richard_Stallman
https://upload.wikimedia.org/wikipedia/commons/2/28/Richard_Stallman_at_LibrePlanet_2019.jpg
政治的
富人的天堂是由穷人的地狱构成的。
维克多·雨果
1802-1885
https://en.wikipedia.org/wiki/Victor_Hugo
https://upload.wikimedia.org/wikipedia/commons/e/e6/Victor_Hugo_by_%C3%89tienne_Carjat_1876_-_full.jpg
政治的

您需要确保在读取文件时使用了正确的分隔符,在您的示例中是a
。这是
fgetcsv
的第三个参数$headers = fgetcsv($inputFile, null, "|");
while (($row = fgetcsv($inputFile, null, "|")) !== FALSE)