parent
00023cc3de
commit
848c763c0d
3 changed files with 18 additions and 1 deletions
@ -0,0 +1,12 @@ |
||||
<?php |
||||
|
||||
function variable_name(): string |
||||
{ |
||||
return 'hello'; |
||||
} |
||||
|
||||
function variable_variable_with_function_call(): void |
||||
{ |
||||
${variable_name()} = 'world'; |
||||
echo $hello; |
||||
} |
||||
Loading…
Reference in new issue