0

Any ideas? Here is the code:

$delay_time = $delay_time * 1000;

It has to do with the latest version of PHP.

I am running PHP 7.

Andrilio
  • 1
  • 3

1 Answers1

0

please check whether $delay_time is a numeric or string

Add this condition in your code

if (is_numeric($delay_time)) { 
// Your Code...
}
Umair Khan
  • 1,684
  • 18
  • 34
thirumal mani L
  • 164
  • 1
  • 5