[Solved] tp5 Error: strpos(): Non-string needles will be interpreted as strings in the future. Use an explicit chr() call to preserve the cu

wrong reason

PHP7.3 version impact

Solution

1. Change the PHP version

2.

$nullOffset = strpos($url, 0x00 ); // before replacement 
$nullOffset = strpos($url, chr( 0x00 )); // after replacement

Similar Posts:

Leave a Reply

Your email address will not be published. Required fields are marked *