Coseva\CSV::__toString PHP Method

__toString() public method

If you cast a CSV instance as a string it will print the contents on the CSV to an HTML table.
public __toString ( ) : string
return string $this->toTable() HTML table of CSV contents
    public function __toString()
    {
        return $this->toTable();
    }