标签: php html
我想将比索符号'₱' - ₱存储在PHP变量中。
₱
像.. $peso = ₱?
$peso = ₱
我怎样才能做到这一点?
答案 0 :(得分:0)
试试这个
<?php $peso = "₱"; echo html_entity_decode($peso); ?>