Title: Issue (solved) with PHP 7.2
Last modified: May 13, 2019

---

# Issue (solved) with PHP 7.2

 *  [bastien74](https://wordpress.org/support/users/bastien74/)
 * (@bastien74)
 * [7 years, 1 month ago](https://wordpress.org/support/topic/issue-solved-with-php-7-2/)
 * Hi there,
 * I recently switch from PHP 5.6 to PHP 7.2.
 * The “email before download” plugin was then creating a PHP Warning :
    “count()
   parameter must be an array or an object that implements countable” for class-
   email-before-download-db.php, on line 56.
 * Here is the line in question which was creating the warning :
    _if (count($query)
   > 0) {_
 * I simply changed it to this, so the warning will disappear (and my website would
   work with PHP7.2) :
    _if (count(**(array)**$query) > 0) {_
 * Hope this might help the developers, or others who might have the same issue.
 * Cheers
 * Bastien
 * The page I need help with: _[[log in](https://login.wordpress.org/?redirect_to=https%3A%2F%2Fwordpress.org%2Fsupport%2Ftopic%2Fissue-solved-with-php-7-2%2F%3Foutput_format%3Dmd&locale=en_US)
   to see the link]_

Viewing 1 replies (of 1 total)

 *  [vitotheboss](https://wordpress.org/support/users/vitotheboss/)
 * (@vitotheboss)
 * [7 years ago](https://wordpress.org/support/topic/issue-solved-with-php-7-2/#post-11583111)
 * Hi [@bastien74](https://wordpress.org/support/users/bastien74/)
 * I fixed this migration problem to PHP 7.2, with other solution.
 *  `if (is_array($query) > 0) {`
 * Did you solve the problem with your solution?
 * I hope the developers will fix this in the repository
    -  This reply was modified 7 years ago by [vitotheboss](https://wordpress.org/support/users/vitotheboss/).

Viewing 1 replies (of 1 total)

The topic ‘Issue (solved) with PHP 7.2’ is closed to new replies.

 * ![](https://ps.w.org/email-before-download/assets/icon-256x256.jpg?rev=1813522)
 * [Email Before Download](https://wordpress.org/plugins/email-before-download/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/email-before-download/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/email-before-download/)
 * [Active Topics](https://wordpress.org/support/plugin/email-before-download/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/email-before-download/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/email-before-download/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [vitotheboss](https://wordpress.org/support/users/vitotheboss/)
 * Last activity: [7 years ago](https://wordpress.org/support/topic/issue-solved-with-php-7-2/#post-11583111)
 * Status: not resolved