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 で指定された文字を含む 1 文字の文字列を返します。
次のように簡単です。
echo chr('0134');
出力:
†