如何在每行之前打印">"?
if ($quoteid) {
echo '
> '.$quote['message'].'
';
}
Run Code Online (Sandbox Code Playgroud)
目前它看起来像这样:
> I would move Heaven and Hell and anything in between to get to you. You wouldn't be safe anywhere if I was mad at you. And that's not bull; that's truth. I've went up against people. You could pull a gun on me and if I'm mad at you I'm coming forward. You'd have to shoot me to stop me and if you don't kill me... you're stupid cause the next time you see me I will kill you.
我希望它看起来像这样:
> I would move Heaven and Hell and anything in between to get to you. > You wouldn't be safe anywhere if I was mad at you. > And that's not bull; that's truth. I've went up against people. > You could pull a gun on me and if I'm mad at you I'm coming forward. > You'd have to shoot me to stop me and if you don't kill me... you're stupid cause the next time you see me I will kill you.
Con*_*oyP 10
if ($quoteid) {
// Replace new line with new line + "> "
echo '>' . str_replace("\n", "\n> ", $quote['message']);
}
Run Code Online (Sandbox Code Playgroud)
if ($quoteid) {
echo ' > '.str_replace("\n","\n > ",$quote['message'])';
}
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
183 次 |
| 最近记录: |