如何用php输出单字符文本?

时间:2014-04-21 12:14:08

标签: php apache echo plaintext

我正在为某些服务实现一个API,它应该只在内容中返回一个字符,如'0'或'1',没有尾随或前导空格或html标记。

我尝试了以下内容。

header( 'Content-Type:text/plain' );
echo "1";

header( 'Content-Type:text/plain' );
print "1";

我也尝试省略标题行,但我总是在输出的末尾添加一个新行字符。

这是php -v的输出。

PHP 5.3.28 (cli) (built: Dec 15 2013 17:43:05)
Copyright (c) 1997-2013 The PHP Group
Zend Engine v2.3.0, Copyright (c) 1998-2013 Zend Technologies

这是httpd -v

的输出
Server version: Apache/2.2.23 (Unix)
Server built:   Nov 25 2012 15:00:50

1 个答案:

答案 0 :(得分:1)

只有文件中的这么多代码才有帮助:)

<?php echo 1;