Pop\Pdf\Object\Root::__toString PHP Метод

__toString() публичный Метод

Method to print the root object.
public __toString ( ) : string
Результат string
    public function __toString()
    {
        // Set the PDF header and version.
        $obj = $this->header . $this->version . "\n" . $this->data;
        return $obj;
    }