mageekguy\atoum\asserters\phpString::__toString PHP 메소드

__toString() 공개 메소드

public __toString ( )
    public function __toString()
    {
        return is_string($this->value) === false ? parent::__toString() : $this->_('string(%s) \'%s\'', strlen($this->value), addcslashes($this->value, $this->charlist));
    }

Usage Example

예제 #1
0
파일: utf8String.php 프로젝트: atoum/atoum
 public function __toString()
 {
     return is_string($this->value) === false ? parent::__toString() : $this->_('string(%s) \'%s\'', mb_strlen($this->value, 'UTF-8'), addcslashes($this->value, $this->charlist));
 }