Note that there are some explanatory texts on larger screens.

plurals
  1. POPHP Remove Element from XML
    primarykey
    data
    text
    <p>I want to remove tasks that are older than today, but I can't quite figure out how to remove elements from XML file yet.</p> <pre><code>$xml_file = simplexml_load_file('file.xml'); foreach ($xml_file-&gt;task as $aTask) { if ($aTask-&gt;date &lt; $today) { //$xml_file-&gt;removeChild($aTask); //doesnt work } } </code></pre> <p>Here is my XML file below:</p> <pre><code>&lt;?xml version="1.0"?&gt; &lt;calender&gt; &lt;task&gt;&lt;date&gt;00/00/0000&lt;/date&gt;&lt;title&gt;My Birthday&lt;/title&gt;&lt;description&gt;Today is my birthday!&lt;/description&gt;&lt;/task&gt;&lt;task&gt;&lt;date&gt;04/01/2013&lt;/date&gt;&lt;title&gt;ghh&lt;/title&gt;&lt;description&gt;jfhjhj&lt;/description&gt;&lt;/task&gt;&lt;task&gt;&lt;date&gt;04/01/2013&lt;/date&gt;&lt;title&gt;egfwe&lt;/title&gt;&lt;description&gt;wefwef&lt;/description&gt;&lt;/task&gt;&lt;task&gt;&lt;date&gt;04/01/2013&lt;/date&gt;&lt;title&gt;cvbhm&lt;/title&gt;&lt;description&gt;dhmdh&lt;/description&gt;&lt;/task&gt;&lt;task&gt;&lt;date&gt;04/02/2013&lt;/date&gt;&lt;title&gt;gg&lt;/title&gt;&lt;description&gt;gg&lt;/description&gt;&lt;/task&gt;&lt;task&gt;&lt;date&gt;04/02/2013&lt;/date&gt;&lt;title&gt;test&lt;/title&gt;&lt;description&gt;test&lt;/description&gt;&lt;/task&gt;&lt;task&gt;&lt;date&gt;04/03/2013&lt;/date&gt;&lt;title&gt;ggg&lt;/title&gt;&lt;description&gt;ggg&lt;/description&gt;&lt;/task&gt;&lt;task&gt;&lt;date&gt;04/03/2013&lt;/date&gt;&lt;title&gt;ssdv&lt;/title&gt;&lt;description&gt;ssdvs&lt;/description&gt;&lt;/task&gt;&lt;task&gt;&lt;date&gt;04/03/2013&lt;/date&gt;&lt;title&gt;test&lt;/title&gt;&lt;description&gt;testtest&lt;/description&gt;&lt;/task&gt;&lt;task&gt;&lt;date&gt;04/04/2013&lt;/date&gt;&lt;title&gt;tttt&lt;/title&gt;&lt;description&gt;ttttttttt&lt;/description&gt;&lt;/task&gt;&lt;task&gt;&lt;date&gt;04/05/2013&lt;/date&gt;&lt;title&gt;qewerbqwer&lt;/title&gt;&lt;description&gt;bwerbwerbwebr&lt;/description&gt;&lt;/task&gt;&lt;task&gt;&lt;date&gt;04/07/2013&lt;/date&gt;&lt;title&gt;fgj&lt;/title&gt;&lt;description&gt;fghj f&lt;/description&gt;&lt;/task&gt;&lt;task&gt;&lt;date&gt;04/08/2013&lt;/date&gt;&lt;title&gt;test&lt;/title&gt;&lt;description&gt;swdefswde&lt;/description&gt;&lt;/task&gt;&lt;task&gt;&lt;date&gt;04/09/2013&lt;/date&gt;&lt;title&gt;hj,h&lt;/title&gt;&lt;description&gt;hj,gh&lt;/description&gt;&lt;/task&gt;&lt;task&gt;&lt;date&gt;04/16/2013&lt;/date&gt;&lt;title&gt;dfbd&lt;/title&gt;&lt;description&gt;dfbdfb&lt;/description&gt;&lt;/task&gt;&lt;task&gt;&lt;date&gt;04/17/2013&lt;/date&gt;&lt;title&gt;dfb&lt;/title&gt;&lt;description&gt;dfb&lt;/description&gt;&lt;/task&gt; &lt;/calender&gt; </code></pre> <p>can someone please help me?</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload