私はこのコードを持っています:
$filename = 'files.xml';
$dom = new DomDocument();
$dom->load($filename);
$oldCount = '';
$newCount = $dom->getElementsByTagName('file')->length;
if($newCount == $oldCount){
echo "There are no new elements in the XML.\n";
}
else {
echo "New Count is: ".$newCount."\n";
echo "Old Count is: ".$oldCount."\n";
for ($oldCount =0; $oldCount < $newCount; $oldCount++){
$file = file_get_contents('files.xml');
$xml = simplexml_load_string($file);
$result = $xml->xpath('file');
echo "File ".($oldCount+1).": ".$result[$oldCount]."\n\n";
//echo "Old: ".$oldCount."\n";
//echo "New: ".$newCount."\n";
}
$oldCount = $newCount;
//echo "Old Count at the end: ".$oldCount."\n";
}
echo "Old Count at the end: ".$oldCount."\n";
私がやりたいのは$oldCount
、files.xmlの内部に同じ数の要素がある場合、プログラムが次の場合に「XMLに新しい要素はありません」と表示されるように、の値が最後に格納されるようにすることです。 2回目に実行します。
テストの目的で、xmlに2つの要素があります。つまり、xmlは次のようになります。
<?xml version="1.0"?>
<files>
<file>.DS_Store</file>
<file>ID2PDF_log_2.xml</file>
</files>
したがって、これら2つの要素のみを使用してtest.phpを実行すると、最初に情報が表示されるはずです。しかし、2回目に実行すると、メッセージが表示されるはずです。variable scope
私がPHPが苦手であることは明らかです。これどうやってするの?