Zend Studio 上传后格式化 txt 源
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
检查文件行分隔符选项。在 Zend Studio 和 Eclipse 中,它应该位于 Windows->Preferences->General->Workspace
如果您使用类 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:
Adjust the settings based on the server your script will woork and not on the machine you are developing.