我想知道是否有可能在php中声明一个符号常量我想在几个地方的表格标签上使用*必须是红色的,并认为最简单的方法是使用一个全局常量然后在CSS中将其设置为红色。我只是想知道我会怎么做。感谢
<td id="form">
<label for="customer_name">customer Name*:</label>
</td>
//i want to be able to style the * only
答案 0 :(得分:2)
不可能。 PHP中的常量必须与此正则表达式匹配:
[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*
因此,您可以做的唯一“符号常量”是_
示例代码:
define('_', 1);
echo(_);