Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. CodedOutputStream.php

function CodedOutputStream::writeLittleEndian32

File

vendor/google/protobuf/src/Google/Protobuf/Internal/CodedOutputStream.php, line 47

Class

CodedOutputStream

Namespace

Google\Protobuf\Internal

Code

public function writeLittleEndian32($value) {
    $bytes = str_repeat(chr(0), 4);
    $size = self::writeLittleEndian32ToArray($value, $bytes);
    return $this->writeRaw($bytes, $size);
}
RSS feed
Powered by Drupal