According to the documentation that nay it is possible.
To specify a single literal quote, escape it with a slash
reversed (). To specify a backslash, twice ( ).
All other instances of backslash will be treated as one
literal backslash: this means the other sequences of
exhaust that you can be used to, such as r or n, will be issued
literally, as specified instead of having any meaning
special.
Note: Unlike the syntax for double quotes and heredoc, variables and
escape sequences for special characters will not be replaced
when they occur inside strings between quotes.
What you can do is use same concatenation.
$video['chave'] = "valor";
echo '<span class="video">{' .$video['chave'] .'}</span>';
@Qmechanic73, this works however when doing: echo '<span class="video">{$video['name']}</span>' does not capture the value of the array at the name position, an error is returned
– Ricardo