php error reporting Uninitialized string offset: 0

63.2k Views Asked by At

i am doing a stuff in php and not it is debug mode. So i am us

error_reporting(E_ALL);

but When i try to access any character of string it gives me error due to the error reporting.

$sentence = "Hello World"; 
$sentence[0]   //Uninitialized string offset: 0

edited:

public static function prepareSentence($sentence)
{
    $sentence = trim($sentence);
    if ($sentence[0] == '"')  //Uninitialized string offset: 0 
        $sentence = substr($sentence, 1, strlen($sentence));

    if ($sentence[strlen($sentence) - 1] == '"')
        $sentence = substr($sentence, 0, -1);

    if ($sentence[0] == '"' || $sentence[strlen($sentence) - 1] == '"')
        return self::prepareSentence($sentence);
    return $sentence;
}

How should I do in order to work in dev mode. I need the error_reporting(E_ALL);

thanks in advance.

3

There are 3 best solutions below

3
On BEST ANSWER

For empty string, you can't use $sentence[0], that will cause the notice you got.

You can add !empty($sentence) to check if it is empty.

1
On

You are creating $sentence as a string ($sentence = "Hello World";) and then calling it as an array ($sentence[0]). That is no longer allowed. It used to work silently in the background and change the variable to an array for you with that error but as of PHP 7.1 it will fail completely. Comes out as an E_NOTICE error (should actually be upgraded to E_DEPRECATED or something as it now fails but whatever).

0
On

In case you are using WordPress and having the same issue, ensure to add domain-name.tld/wp-login as your URl redirect