自从我完成任何 PHP 编码以来已经有很长时间了,所以我真的回到了原点,如果我遗漏了一些非常明显/微不足道的东西,请提前道歉。
我正在尝试创建一个表单,它处理和提交数据并将一段代码附加到 XML 文件的特定部分。
这就是我所拥有的
<? $title = $_POST['title'] ;
$author = $_POST['author'];
$filesize = $_POST['filesize'];
$pubdate = $_POST['pubdate'];
$duration = $_POST['duration'];
$summary = $_POST['summary'];
$key = '<itunes:category text="Business"></itunes:category>';
$newline = '<item>
<title>$title</title>
<link>http://example.com/CS/podcast/<? php echo($target_path);?></link>
<itunes:author>$author</itunes:author>
<itunes:summary><?php echo($summary); ?></itunes:summary>
<enclosure url="http://example.com/CS/$targetpath" length="$filesize" type="audio/mpeg"/>
<guid>http://www.example.com/CS/podcast/<? php echo($target_path);?></guid>
<pubDate><?php echo($pubdate);?></pubDate>
<itunes:duration><?php echo($duration);?></itunes:duration>
<itunes:keywords>My Podcast</itunes:keywords>
<category>Podcasts</category>
<itunes:explicit>no</itunes:explicit>
</item>';
//copy file to prevent double entry
$file = "list.xml";
$newfile = "listtemp.xml";
copy($file, $newfile) or exit("failed to copy $file");
//load file into $lines array
$fc = fopen ($file, "r");
while (!feof ($fc))
{
$buffer = fgets($fc, 4096);
$lines[] = $buffer;}
fclose ($fc);
//open same file and use "w" to clear file
$f=fopen($newfile,"w") or die("couldn't open $file");
/* uncomment to debug
print_r($lines);
print "<br>\n";
*/
//loop through array using foreach
foreach($lines as $line){
fwrite($f,$line); //place $line back in file
if (strstr($line,$key)){ //look for $key in each line
fwrite($f,$newline."\n");
} //place $line back in file }
fclose($f);
copy($newfile, $file) or exit("failed to copy $newfile");
echo "done";
echo "$newline";?>
我似乎遇到的问题是它将代码完美地附加到正确的位置,但显示 $title 而不是输入的标题,同样如此
我认为问题是你不能在另一个变量中包含一个变量,因为如果任何人都可以在表单中输入代码可能会很危险,有没有办法解决这个问题?我什至不需要严密的安全性,因为这将仅供内部使用。
成立
http://uk3.php.net/manual/en/function.eval.php 但无法很好地利用它。
谢谢