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

Breadcrumb

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

function PoStreamReader::open

Implements Drupal\Component\Gettext\PoStreamInterface::open().

Opens the stream and reads the header. The stream is ready for reading items after.

Throws

\Exception If the URI is not yet set.

Overrides PoStreamInterface::open

File

core/lib/Drupal/Component/Gettext/PoStreamReader.php, line 152

Class

PoStreamReader
Implements Gettext PO stream reader.

Namespace

Drupal\Component\Gettext

Code

public function open() {
    if (!empty($this->uri)) {
        $this->fd = fopen($this->uri, 'rb');
        $this->readHeader();
    }
    else {
        throw new \Exception('Cannot open stream without URI set.');
    }
}

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal