php 中 and$ 运算符的区别
phpserver side programmingprogramming
$ 运算符
运算符用于定义 php 中的变量。例如,message。此类变量可以包含任何类型的值,如 int、string 等。
$$ 运算符
$$ 是一个特殊运算符,它包含另一个变量的名称,可用于访问该变量的值。
示例
以下示例显示了 '′vs′$' 运算符的用法。
<!DOCTYPE html> <html> <head> <title>PHP 示例</title> </head> <body> <?php $welcome = "message"; $message = "Welcome to Tutorialspoint"; echo $welcome; print("<br/>"); echo $$welcome; ?> </body> </html>
输出
message Welcome to Tutorialspoint