__toString方法不适用于strlen函数

时间:2014-08-24 15:36:59

标签: php oop tostring

它说"可捕获的致命错误:方法metin_fonk :: __ toString()必须返回一个字符串值...."问题出在uzunluk方法的if构造中。我认为问题在于strlen功能。这是代码:

class metin_fonk{
    public $deger;
    public function __construct() {
        return $this;
    }
    public function _($a){
        $this->deger = $a;
        return $this;
    }
    public function uzunluk($a,$b){
        //$this->deger = (strlen(@$this->deger)>=$a && strlen(@$this->deger)<=$b)? "1" : "0" ;
        if(strlen($this->deger)>=$a && strlen($this->deger)<=$b){   //HERE//
            $this->deger = "1";
        }else{
            $this->deger = "0";
        }
        return $this;
    }
    public function sql_kac(){
        //global $vt;
        //$this->deger=$vt->real_escape_string($this->deger);
        return $this;
    }
    public function kirp(){
        $this->deger=trim($this->deger);
        return $this;
    }
    public function html_kac(){
        $this->deger=htmlspecialchars($this->deger);
        return $this;
    }
    public function __toString(){
        return $this->deger;
    }
}
$m=new metin_fonk();
$yonetici = $m->_(@$_POST["yonetici"])->sql_kac()->html_kac()->kirp();
if(!empty($yonetici)){
    $a = 0;
    $b="<div style=\"opacity: 0\">+???+<p>";
    $c="</p><br>-???-</div>";
    //if (is_string(uzunluk($yonetici,"Adınız",2,30))) {echo $b. uzunluk($yonetici,"Adınız",2,30).$c;$a=1;}
    if (!($m->_($yonetici)->uzunluk(2,25))) {echo $b."Adınız en az 2, en fazla 25 karakter uzunluğunda olabilir.".$c;$a=1;}
}

1 个答案:

答案 0 :(得分:0)

我认为您想在此行的末尾添加->deger

$yonetici = $m->_(@$_POST["yonetici"])->sql_kac()->html_kac()->kirp()->deger;

或强制转换为字符串,如下所示:

$yonetici = (string)$m->_('sdf')->sql_kac()->html_kac()->kirp();