We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When running demo/index.php I see the following errors (multiple times):
Warning: count(): Parameter must be an array or an object that implements Countable in C:.....\vendor\php-htmldiff-master\HtmlDiff.php on line 360
Warning: count(): Parameter must be an array or an object that implements Countable in C:.....\vendor\php-htmldiff-master\HtmlDiff.php on line 266
wamp PHP Version 7.3.12
The text was updated successfully, but these errors were encountered:
This can be fixed changing line 266 from
if( count( $words ) == 0 && count( $specialCaseTagInjection ) == 0 ) { break; }
to
if( $words && count( $words ) == 0 && $specialCaseTagInjection && count( $specialCaseTagInjection ) == 0 ) { break; }
Sorry, something went wrong.
No branches or pull requests
When running demo/index.php I see the following errors (multiple times):
Warning: count(): Parameter must be an array or an object that implements Countable in C:.....\vendor\php-htmldiff-master\HtmlDiff.php on line 360
Warning: count(): Parameter must be an array or an object that implements Countable in C:.....\vendor\php-htmldiff-master\HtmlDiff.php on line 266
wamp
PHP Version 7.3.12
The text was updated successfully, but these errors were encountered: