caxy / php-htmldiff

A library for comparing two HTML files/snippets and highlighting the differences using simple HTML. Includes support for comparing complex lists and tables
http://php-htmldiff.caxy.com
GNU General Public License v2.0
202 stars 51 forks source link

changes the [] arrays to array() as it does not work in php 5.3 #62

Closed burgoyn1 closed 7 years ago

burgoyn1 commented 7 years ago

In php 5.3 you can not use []. This changes the two times [] is used to array() to make it work with 5.3.

"As of PHP 5.4 you can also use the short array syntax, which replaces array() with []."

jschroed91 commented 7 years ago

Resolves #61