Recently updated to PHP 7.1 and start getting following error
Warning: A non-numeric value encountered in on line 29
Here is wha
in PHP if you use + for concatenation you will end up with this error. In php + is a arithmetic operator. https://www.php.net/manual/en/language.operators.arithmetic.php
wrong use of + operator:
"Content:"+ ""+$initcontent+"'"+ "
use . for concatenation
$output = "". "Content:". "".$initcontent."'". "";