如何在PHP中的字符串末尾保持EOT

时间:2018-11-01 22:31:51

标签: php string

我正在尝试将字符串发送到服务器,该服务器在字符串末尾需要EoT(control + D)。我想知道如何将EoT连接到字符串的末尾?

1 个答案:

答案 0 :(得分:0)

echo "Some funky stringy thingy" . "/r/n";

echo "Some funky stringy thingy" . chr(13) . chr(10);