playwright Posted June 5, 2010 Share Posted June 5, 2010 I need to compare 2 html files so as to use this statement in a do-while loop. Can i do this by using file_get_contents() for each file and then compare the result?e.g do{ ... }while (file_get_contents($html1)!=file_get_contents($html2)); Quote Link to comment https://forums.phpfreaks.com/topic/203973-compare-html-files/ Share on other sites More sharing options...
Alex Posted June 5, 2010 Share Posted June 5, 2010 Did you try it? Quote Link to comment https://forums.phpfreaks.com/topic/203973-compare-html-files/#findComment-1068311 Share on other sites More sharing options...
playwright Posted June 5, 2010 Author Share Posted June 5, 2010 i do something like that do{ ... }while (file_get_contents($html1)!=file_get_contents($html2)); and it gives me an error..failed to open stream: No such file or directory Quote Link to comment https://forums.phpfreaks.com/topic/203973-compare-html-files/#findComment-1068315 Share on other sites More sharing options...
ignace Posted June 5, 2010 Share Posted June 5, 2010 Why bother asking? Just try it and see for yourself if it would work. and it gives me an error..failed to open stream: No such file or directory Your path is wrong. Quote Link to comment https://forums.phpfreaks.com/topic/203973-compare-html-files/#findComment-1068318 Share on other sites More sharing options...
playwright Posted June 5, 2010 Author Share Posted June 5, 2010 i'm using the right paths now, the files are different but it seems to be stuck in comparing the html files..Anyway does anyone know a way to compare two html files?? Quote Link to comment https://forums.phpfreaks.com/topic/203973-compare-html-files/#findComment-1068333 Share on other sites More sharing options...
Alex Posted June 6, 2010 Share Posted June 6, 2010 You're comparing them fine, your program logic must be flawed, and we can't help you with that without seeing code. Quote Link to comment https://forums.phpfreaks.com/topic/203973-compare-html-files/#findComment-1068459 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.