Google\Cloud\Datastore\DatastoreClient::blob PHP Method

blob() public method

Example: $blob = $datastore->blob('hello world'); Blobs can be used to store binary data $blob = $datastore->blob(file_get_contents(__DIR__ .'/family-photo.jpg'));
public blob ( string | resource | StreamInterface $value ) : Blob
$value string | resource | StreamInterface
return Blob
    public function blob($value)
    {
        return new Blob($value);
    }