Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道是否有办法通过 php 创建非 ASCII 代码(alt 代码)。例如 Alt + 0134 给出了这个字符 †,我想用 php 来做。
谢谢
您可以使用以下chr()功能:
chr()
从文档页面:
返回一个包含由 ascii 指定的字符的单字符字符串。
它很简单:
echo chr('0134');
输出:
†