MailMimeParser 2.0

ParserPartChildrenContainer extends PartChildrenContainer
in package

A child container that proxies calls to a parser when attempting to access child parts.

Tags
author

Zaahid Bateson

Table of Contents

$children  : array<string|int, IMessagePart>
$parserProxy  : ParserMimePartProxy
$position  : int
$allParsed  : bool
__construct()  : mixed
add()  : mixed
Adds the passed IMessagePart to the container in the passed position.
current()  : mixed
getChildren()  : RecursiveIterator|null
If the current element points to an IMultiPart, its child iterator is returned by calling {@see IMultiPart::getChildIterator()}.
hasChildren()  : bool
Returns true if the current element is an IMultiPart and doesn't return null for {@see IMultiPart::getChildIterator()}. Note that the iterator may still be empty.
key()  : mixed
next()  : mixed
offsetExists()  : mixed
offsetGet()  : mixed
offsetSet()  : mixed
offsetUnset()  : mixed
remove()  : int
Removes the passed part, and returns the integer position it occupied.
rewind()  : mixed
valid()  : mixed

Properties

$allParsed

private bool $allParsed = false

Set to true once all parts have been parsed, and requests to the proxy won't result in any more child parts.

Methods

add()

Adds the passed IMessagePart to the container in the passed position.

public add(IMessagePart $part[, int $position = null ]) : mixed

If position is not passed or null, the part is added to the end, as the last child in the container.

Parameters
$part : IMessagePart

The part to add

$position : int = null

An optional index position (0-based) to add the child at.

Return values
mixed

getChildren()

If the current element points to an IMultiPart, its child iterator is returned by calling {@see IMultiPart::getChildIterator()}.

public getChildren() : RecursiveIterator|null
Return values
RecursiveIterator|null

the iterator

hasChildren()

Returns true if the current element is an IMultiPart and doesn't return null for {@see IMultiPart::getChildIterator()}. Note that the iterator may still be empty.

public hasChildren() : bool
Return values
bool

offsetGet()

public offsetGet(mixed $offset) : mixed
Parameters
$offset : mixed
Return values
mixed

offsetSet()

public offsetSet(mixed $offset, mixed $value) : mixed
Parameters
$offset : mixed
$value : mixed
Return values
mixed

offsetUnset()

public offsetUnset(mixed $offset) : mixed
Parameters
$offset : mixed
Return values
mixed

remove()

Removes the passed part, and returns the integer position it occupied.

public remove(IMessagePart $part) : int
Parameters
$part : IMessagePart

The part to remove.

Return values
int

the 0-based position it previously occupied.

Search results