PHP new一个类的时候多出一个水平制表符是怎么回事

晓敬 2015-05-01 12:04:11

<?php
namespace Org\QRCode;
class QRencode {

public $casesensitive = true;
public $eightbit = false;

public $version = 0;
public $size = 3;
public $margin = 4;

public $structured = 0; // not supported yet

public $level = QRConst::QR_ECLEVEL_L;
public $hint = QRConst::QR_MODE_8;

private function __construct(){

}

//----------------------------------------------------------------------
public static function factory($level = QRConst::QR_ECLEVEL_L, $size = 3, $margin = 4)
{
ob_start();
$enc = new QRencode();
$bom = ob_get_contents();
ob_end_clean();
echo ord($bom[0]);
die(0);
$enc->size = $size;
$enc->margin = $margin;

switch ($level.'') {
case '0':
case '1':
case '2':
case '3':
$enc->level = $level;
break;
case 'l':
case 'L':
$enc->level = QRConst::QR_ECLEVEL_L;
break;
case 'm':
case 'M':
$enc->level = QRConst::QR_ECLEVEL_M;
break;
case 'q':
case 'Q':
$enc->level = QRConst::QR_ECLEVEL_Q;
break;
case 'h':
case 'H':
$enc->level = QRConst::QR_ECLEVEL_H;
break;
}

return $enc;
}

//----------------------------------------------------------------------
public function encodeRAW($intext, $outfile = false)
{
$code = new QRcode();

if($this->eightbit) {
$code->encodeString8bit($intext, $this->version, $this->level);
} else {
$code->encodeString($intext, $this->version, $this->level, $this->hint, $this->casesensitive);
}

return $code->data;
}

//----------------------------------------------------------------------
public function encode($intext, $outfile = false)
{
$code = new QRcode();

if($this->eightbit) {
$code->encodeString8bit($intext, $this->version, $this->level);
} else {
$code->encodeString($intext, $this->version, $this->level, $this->hint, $this->casesensitive);
}

QRtools::markTime('after_encode');

if ($outfile!== false) {
file_put_contents($outfile, join("\n", QRtools::binarize($code->data)));
} else {
return QRtools::binarize($code->data);
}
}

//----------------------------------------------------------------------
public function encodePNG($intext, $outfile = false,$saveandprint=false)
{
try {

ob_start();
$tab = $this->encode($intext);
$err = ob_get_contents();
ob_end_clean();

if ($err != '')
QRtools::log($outfile, $err);

$maxSize = (int)(QRConfig::QR_PNG_MAXIMUM_SIZE / (count($tab)+2*$this->margin));

QRimage::png($tab, $outfile, min(max(1, $this->size), $maxSize), $this->margin,$saveandprint);

} catch (Exception $e) {

QRtools::log($outfile, $e->getMessage());

}
}
}
?>

上面代码在运行到die(0)处的时候多出一个水平制表符来,这个是怎么回事,求各位好友帮忙解答一下,谢谢
PHP版本:PHP Version 5.4.38 x86 用fcgid运行在64位Apache/Win7_64bit上
...全文
247 7 打赏 收藏 转发到动态 举报
写回复
用AI写文章
7 条回复
切换为时间正序
请发表友善的回复…
发表回复
fdipzone 2015-05-04
  • 打赏
  • 举报
回复
有可能是你include的文件中有tab输出。
xuzuning 2015-05-04
  • 打赏
  • 举报
回复
1、确保你的这个程序文件是以 无BOM UTF-8 格式存储的 虽然 TP 要求使用 utf-8 字符集,但你你这个程序文件中并没有中文字符,所以保存为 ANSI 也就可以了 2、去掉 QRencode.php 文件中最后一个 ?> (其实本来也没有) 可能是你在编辑他或其相关的文件时,在 <?php ... ?> 之外无意加进了 Tab 键
jingyexiaoyue 2015-05-04
  • 打赏
  • 举报
回复
引用 4 楼 fdipzone 的回复:
ob_start(); $enc = new QRencode(); $bom = ob_get_contents(); ob_end_clean(); echo ord($bom[0]); die(0); 在die之前,因为执行过ob_end_clean(); 所以在这之前不会有输出的。 你讲的 tab一定就是echo ord($bom[0]); 这里输出的,先注释掉看看。
可能是我没有讲清楚这块流程的作用,之前的程序是:

        $enc = new QRencode();
        $enc->size = $size;
        $enc->margin = $margin;
因为生成图片的时候老是多个类似Bom头的东西,我就开始查,范围缩小到这里的时候发现在了这个东西,只有在new QRencode的时候出来个东西,于是我把这时的内容保存到缓存中打印出缓存中的内容查看,发现是一个ascii为9的水平制表符,我现在不理解类的构造函数中没有任何输出,确自己输出了一个ascii为9的字符是怎么回事。
fdipzone 2015-05-02
  • 打赏
  • 举报
回复
ob_start(); $enc = new QRencode(); $bom = ob_get_contents(); ob_end_clean(); echo ord($bom[0]); die(0); 在die之前,因为执行过ob_end_clean(); 所以在这之前不会有输出的。 你讲的 tab一定就是echo ord($bom[0]); 这里输出的,先注释掉看看。
wander_wind 2015-05-02
  • 打赏
  • 举报
回复
引用 2 楼 jingyexiaoyue 的回复:
[quote=引用 1 楼 wander_wind 的回复:] echo ord($bom[0]); 这个是干嘛的
获取缓存中的内容之后,打印出缓存的第一个字符[/quote] 其实我的意思是...你删了它看看是不是它的问题 如果不是,找找直接或间接引用的php脚本,有没有?>后多了一个tab的 php脚本不写?>结尾是个好习惯
jingyexiaoyue 2015-05-02
  • 打赏
  • 举报
回复
引用 1 楼 wander_wind 的回复:
echo ord($bom[0]); 这个是干嘛的
获取缓存中的内容之后,打印出缓存的第一个字符
wander_wind 2015-05-02
  • 打赏
  • 举报
回复
echo ord($bom[0]); 这个是干嘛的

21,886

社区成员

发帖
与我相关
我的任务
社区描述
从PHP安装配置,PHP入门,PHP基础到PHP应用
社区管理员
  • 基础编程社区
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告
暂无公告

试试用AI创作助手写篇文章吧