在PHP中,可以使用以下语法来声明变量:
```php
$variable_name = value;
```
例如:
$name = "John";
$age = 25;
在PHP中,变量以`$`符号开头,后面紧跟变量名,然后通过`=`进行赋值。