php 文本区域多余空间

发布于 2024-11-15 13:19:39 字数 211 浏览 0 评论 0原文

我有一个简单的文本区域框,刷新时在框中包含 php:

<textarea><?php    //php in here    ?></textarea>

目前,php 很长,当它回显值时,框之间应该有很多空白。我认为这是因为大量的 php (未显示)。有没有办法使用trim()或css属性将文本左对齐?

I have a simple text area box with php in the box on refresh:

<textarea><?php    //php in here    ?></textarea>

At the moment, the php is very long and when it does echo out the value the box should be there is a lot of white space in between. i think this is because of the large amount of php (not shown). is there a way to use the trim() or a css attribute that aligns the text to the left?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

紫南 2024-11-22 13:19:39

编译器会提取两个 PHP 之间的任何内容,然后将 PHP 的结果插入到该点。不会输出新行或标签内的任何内容。您还可以在标签内使用换行符。
例子:

<textarea>
<?php
for($i=0;$i<10;$i++)
{
    echo("hello");
}
?>
</textarea>

Anything between two PHP is extracted by the compiler and the result of the PHP is inserted at that point. No new lines or anything within the tags is outputted. You are also allowed to use new lines within the tags.
Example:

<textarea>
<?php
for($i=0;$i<10;$i++)
{
    echo("hello");
}
?>
</textarea>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文