PHP - AS400 DB2 table 在字段名称的开头使用 $

PHP - AS400 DB2 table uses $ at the start of the field name

我正在将代码说明 table 加入到具有代码的 table 中。代码描述 table 中的每个字段都以 $ 开头。 PHP 认为这些是变量和中断。有没有办法告诉 PHP 这些是字段名称而不是变量?

谢谢

select $text FROM l0text where $code = 'XLST' and $value = c2xlst

我知道怎么做了:

$text = '$text';
$code = '$code';
$value = '$value';

通过创建具有相同字段名称的变量,它允许 sql 到 运行 正确。