我有一个书写XML档案的制度。
问题是,在XML文件中,我不可能有这一编号:&
。
在代码中,我需要将这一编号改为&
。
问题在于我有一套指示,我不想应用一种功能,取代我所描述的埃韦·斯廷里的这个象征。
例如:
$stringData ="<?xml version="1.0" encoding="UTF-8"?>
";
$stringData .="<ingrooves_import xmlns:xsd="http://www.w3.org/2001/XMLSchema" xsi:schemaLocation="http://schemas.ingrooves.com/INgrooves/INgroovesImport_1_0.xsd" schema_version="1" schema_revision="0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.ingrooves.com/INgrooves/INgroovesImport_1_0.xsd">
";
$stringData .= "<album>
";
$stringData .= "<title>".$albumTitle."</title>
";
$stringData .= "<label_reference>LA0001</label_reference>
";
$stringData .= "<performer>".$MainArtist."</performer>
";
$stringData .= "<catalog_number>".$CatalogueNumber."</catalog_number>
";
$stringData .= "<upc>".$UPC_EAN_JAN."</upc>
";
$stringData .= "<release_date>".$releaseDate."</release_date>
";
$stringData .= "<copyright>".$DigiDistYear."</copyright>
";
我的法典中还有许多美元。 因此,你可以理解,我不想申请每笔记本,代之以代号。
我想找到一种办法,告诉该守则,对于任何美元升值变量,就任何内容而言,该笔数额将碰到,那么它必须替换<代码>和amp; with &
。
Is there a way of doing it?
In few words, the code should do so:
从现在起,你将在可变数的加固元件内碰到每个内容,请修改<代码>和>; with &
。 每一次,你都会遇到这一编号。
Please help me!
Thanks