Google\Cloud\BigQuery\Bytes::formatAsString PHP Méthode

formatAsString() public méthode

Format the value as a string.
public formatAsString ( ) : string
Résultat string
    public function formatAsString()
    {
        return base64_encode((string) $this->value);
    }

Usage Example

 public function testToString()
 {
     $bytes = new Bytes($this->value);
     $expected = base64_encode($this->value);
     $this->assertEquals($expected, (string) $bytes);
     $this->assertEquals($expected, $bytes->formatAsString());
 }