Zend Studio 上传后格式化 txt 源

发布于 2024-12-06 21:25:38 字数 230 浏览 1 评论 0原文

Zend Studio 上传后格式化 txt 源。

例如:

<?php 
echo 'test';
echo 'test';
echo 'test';
?>

上传后,源代码如下所示:

<?php

echo 'test';

echo 'test';

echo 'test';

?>

Zend Studio formats txt-sources after upload.

for Ex:

<?php 
echo 'test';
echo 'test';
echo 'test';
?>

after upload this source code looks like:

<?php

echo 'test';

echo 'test';

echo 'test';

?>

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

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

发布评论

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

评论(1

橘香 2024-12-13 21:25:38

检查文件行分隔符选项。在 Zend Studio 和 Eclipse 中,它应该位于 Windows->Preferences->General->Workspace

如果您使用类 UNIX 服务器,您应该使用:

  • 文本文件编码:utf-8
  • 新文本文件行分隔符:unix

根据脚本将运行的服务器而不是您正在开发的计算机来调整设置。

Check the file line delimiter option. In both Zend Studio and Eclipse it should be in Windows->Preferences->General->Workspace

If you use unix-like server you should use:

  • text file encoding: utf-8
  • new text file line delimiter: unix

Adjust the settings based on the server your script will woork and not on the machine you are developing.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文