eZ\Publish\Core\FieldType\MapLocation\Value::__toString PHP 메소드

__toString() 공개 메소드

Returns a string representation of the keyword value.
public __toString ( ) : string
리턴 string A comma separated list of tags, eg: "php, eZ Publish, html5"
    public function __toString()
    {
        if (is_array($this->address)) {
            return implode(', ', $this->address);
        }
        return (string) $this->address;
    }