English 中文(简体)
这与《加拿大刑法》有任何错误?
原标题:Anything wrong with this php code?
  • 时间:2010-03-20 18:00:22
  •  标签:
  • php
  • xml

页: 1 I was ́ ́s ́s ́s ́s: ́s? 问题现在由Impacti 和 ,只有注入1、5、5、4、5、5、5、5、5、5、5、5、5、5、5、5、5、5、5、5、5、5、5、5、5、5、5、5、5、5、5、5、5、5、5、5、5、5、5、5、5、5、5、5、5、5、5、5、5、5、5、5、5、5、5、5、5、5、5、5、5、5、5、5、5、5、5、5、5、5、5、5、5、5、5、5、5、5、5、5、5、5、5、5、5、5、5、5、5、5、5、5、5、5、5、5、5、5、5、5、5、5、5、5、5、5、5、5、5、5、5、5、5、5、5、5、5、5、5、5、5、

我发现了一些其他辅导(我认为,自一无一味以来,这种辅导十分困难),而与使用Sando I m的比较,似乎极为简短。 我不知道该法典是什么,因此,目前我不敢确定这些问题是否来自营地或我的S3。

 <?php
        if (isset($GLOBALS["HTTP_RAW_POST_DATA"])){
            $xml = $GLOBALS["HTTP_RAW_POST_DATA"];
            $file = fopen("wish.xml","wb");
            fwrite($file, $xml);
            fclose($file);
        }
    ?>

下面是我的正确XML格式:

<WISHES>
    <WISH>
        <NAME>Test</NAME>
        <EMAIL>test@tes.com</EMAIL>
        <DATENTIME>2/3/10</DATENTIME>
        <MESSAGE>Dummy Message</MESSAGE>
    </WISH>
<WISH>
        <NAME>Test</NAME>
        <EMAIL>test@tes.com</EMAIL>
        <DATENTIME>2/3/10</DATENTIME>
        <MESSAGE>Dummy Message</MESSAGE>
    </WISH>
</WISHES>

因此,有人要解释一下,《加拿大刑法》是怎样的? 其原因是:

<WISH>
        <NAME>Test</NAME>
        <EMAIL>test@tes.com</EMAIL>
        <DATENTIME>2/3/10</DATENTIME>
        <MESSAGE>Dummy Message</MESSAGE>
    </WISH>
最佳回答

正如Michael和Nifle已经指出的,该法典在存放新条目时删除了Xml文档中的现有条目。 为了克服这一问题,如你所期望的那样,对法典进行修正:

<?php
    if (isset($GLOBALS["HTTP_RAW_POST_DATA"])){
        $xml = $GLOBALS["HTTP_RAW_POST_DATA"];

        // read in the old ontent of the file
        $oldXML = join(  , file( wish.xml ));

        // replace the old file ending with the new entry and a new file ending
        $newXML = str_replace( </WISHES> , $xml."
</WISHES>");

        // finally store the new data to the file
        $file = fopen("wish.xml","w");
        fwrite($file, $newXML);
        fclose($file);
    }
?>
问题回答

该守则的价值为GLOBALS[ HTTP_RAW_POST_DATA],并写出希望的xml,删除以前的档案内容。

在露天进行“不”而不是“w”。

wb: 书面发言。 b 表示双元数据。

ab:备注。 b 表示双元数据。





相关问题
Brute-force/DoS prevention in PHP [closed]

I am trying to write a script to prevent brute-force login attempts in a website I m building. The logic goes something like this: User sends login information. Check if username and password is ...

please can anyone check this while loop and if condition

<?php $con=mysql_connect("localhost","mts","mts"); if(!con) { die( unable to connect . mysql_error()); } mysql_select_db("mts",$con); /* date_default_timezone_set ("Asia/Calcutta"); $date = ...

定值美元

如何确认来自正确来源的数字。

Generating a drop down list of timezones with PHP

Most sites need some way to show the dates on the site in the users preferred timezone. Below are two lists that I found and then one method using the built in PHP DateTime class in PHP 5. I need ...

Text as watermarking in PHP

I want to create text as a watermark for an image. the water mark should have the following properties front: Impact color: white opacity: 31% Font style: regular, bold Bevel and Emboss size: 30 ...

How does php cast boolean variables?

How does php cast boolean variables? I was trying to save a boolean value to an array: $result["Users"]["is_login"] = true; but when I use debug the is_login value is blank. and when I do ...

热门标签