复杂(卷曲)语法 PHP
Complex (Curly) Syntax PHP
大家下午好!
出于某种原因,我的 PHP 代码中的复杂(卷曲)语法没有解释为变量
function view($name, $data = [])
{
require __DIR__ . '/../app/views/{$name}.view.php';
}
这是我调用 view('index') 的代码;问题是我得到这个错误:
Warning: require(./core/../app/views/{$name}.view.php): failed to open stream
顺便说一下,我的 PHP 版本是 7.0.13
感谢您的帮助!
您的字符串必须放在双引号 (") 而不是单引号 (') 中。否则变量将不会被替换。
看这里:
https://secure.php.net/manual/en/language.types.string.php#language.types.string.syntax.single
Note: Unlike the double-quoted and heredoc syntaxes, variables and escape sequences for special characters will not be expanded when they occur in single quoted strings.
大家下午好!
出于某种原因,我的 PHP 代码中的复杂(卷曲)语法没有解释为变量
function view($name, $data = [])
{
require __DIR__ . '/../app/views/{$name}.view.php';
}
这是我调用 view('index') 的代码;问题是我得到这个错误:
Warning: require(./core/../app/views/{$name}.view.php): failed to open stream
顺便说一下,我的 PHP 版本是 7.0.13
感谢您的帮助!
您的字符串必须放在双引号 (") 而不是单引号 (') 中。否则变量将不会被替换。
看这里: https://secure.php.net/manual/en/language.types.string.php#language.types.string.syntax.single
Note: Unlike the double-quoted and heredoc syntaxes, variables and escape sequences for special characters will not be expanded when they occur in single quoted strings.