我对php中的变量有一点疑问。 我怎样才能做到这一点?
<?php
echo $test;
$test = 'This is a test';
?>
我知道你可以轻松修复它
<?php
$test = 'This is a test';
echo $test;
?>
但我不能以这种方式在我的页面中使用它。
任何人都可以告诉我如何在echo之后有变量?
答案 0 :(得分:3)
Buddy ..它无法完成。如果不为其分配变量值,如何输出变量值。
它的常识..
答案 1 :(得分:1)
<?php
echo getTest();
function getTest(){
return 'This is a test';
}
答案 2 :(得分:0)
你不能。必须在具有值之前声明变量。