Error Handling Learning Mode

Is the following PHP code valid or will it generate an error, warning or notice?

<?php
    error_reporting(E_ALL | E_STRICT);

    $newArray[E_STRICT] = 'foo';
?>