The XMLWriter class

(PHP 5 >= 5.1.2, PHP 7, PHP 8, PECL xmlwriter >= 0.1.0)

Giriş

Sınıf Sözdizimi

XMLWriter {
/* Yöntemler */
public endAttribute(): bool
public endCdata(): bool
public endComment(): bool
public endDocument(): bool
public endDtd(): bool
public endDtdAttlist(): bool
public endDtdElement(): bool
public endDtdEntity(): bool
public endElement(): bool
public endPi(): bool
public flush(bool $empty = true): string|int
public fullEndElement(): bool
public openMemory(): bool
public openUri(string $uri): bool
public outputMemory(bool $boşalt = true): string
public setIndent(bool $girintile): bool
public setIndentString(string $girinti): bool
public startAttribute(string $isim): bool
public startAttributeNs(string|null $önek, string $isim, string|null $uri): bool
public startCdata(): bool
public startComment(): bool
public startDocument(string|null $version = "1.0", string|null $encoding = null, string|null $standalone = null): bool
public startDtd(string $kök_eleman, string|null $publicId = null, string|null $systemId = null): bool
public startDtdAttlist(string $isim): bool
public startDtdElement(string $isim): bool
public startDtdEntity(string $isim, bool $değiştige_var): bool
public startElement(string $isim): bool
public startElementNs(string|null $önek, string $isim, string|null $uri): bool
public startPi(string $hedef): bool
public text(string $içerik): bool
public writeAttribute(string $isim, string $değer): bool
public writeAttributeNs(
    string|null $önek,
    string $isim,
    string|null $uri,
    string $değer
): bool
public writeCdata(string $içerik): bool
public writeComment(string $içerik): bool
public writeDtd(
    string $isim,
    string|null $publicId = null,
    string|null $systemId = null,
    string|null $altküme = null
): bool
public writeDtdAttlist(string $isim, string $içerik): bool
public writeDtdElement(string $name, string $içerik): bool
public writeDtdEntity(
    string $isim,
    string $içerik,
    bool $isParam = false,
    string|null $publicId = null,
    string|null $systemId = null,
    string|null $notationData = null
): bool
public writeElement(string $etiket, string|null $içerik = null): bool
public writeElementNs(
    string|null $önek,
    string $eleman,
    string|null $uri,
    string|null $içerik = null
): bool
public writePi(string $hedef, string $içerik): bool
public writeRaw(string $içerik): bool
}

İçindekiler

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top