PHP “backspace” character during output possible?

后端 未结 8 1101
囚心锁ツ
囚心锁ツ 2021-02-13 04:30

I have a feeling the answer is \"it\'s not possible,\" but thought I\'d ask to satisfy my curiosity.

I have some code that\'s echoed where the \\n is unavoidable:

<
8条回答
  •  滥情空心
    2021-02-13 05:16

    I don't know how to do a backspace, but if you are just trying to do a new line I would use:

    echo "
    ";

    PHP code allows for html code as long as it is used in a print or echo statement and is inside double quotes.

提交回复
热议问题