GithubHelp home page GithubHelp logo

simple-xml-writer's Introduction

Simple Xml Writer

Build Status codecov

Example

Script:

<?php

$writer = new \Wazly\SimpleXmlWriter\Writer(
    '<?xml version="1.0" encoding="UTF-8"?>'.
    '<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:image="http://www.google.com/schemas/sitemap-image/1.1">'.
    '</urlset>',
    ['filters' => 'htmlspecialchars']
);

$writer
    ->addChild('url')
    ->addChild('loc', 'https://dev.wazly.net')
    ->addChild('lastmod', date('Y-m-d', time()))
    ->addChild('image:image')
    ->addChild('image:loc', 'https://img.wazly.net/home.jpg')
    ->rewind()
    // Shift pointer to root
    ->addChild('url')
    ->addChild('loc', 'https://dev.wazly.net/profile?cache=0&rev=4')
    ->addChild('lastmod', date('Y-m-d', time()))
    ->addChild('image:image')
    ->addChild('image:loc', 'https://img.wazly.net/profile.jpg')
    ->store('/path/to/sitemap.xml');

Output (prettified) :

<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:image="http://www.google.com/schemas/sitemap-image/1.1">
    <url>
        <loc>https://dev.wazly.net</loc>
        <lastmod>2020-02-20</lastmod>
        <image:image>
            <image:loc>https://img.wazly.net/home.jpg</image:loc>
        </image:image>
    </url>
    <url>
        <loc>https://dev.wazly.net/profile?cache=0&amp;rev=4</loc>
        <lastmod>2020-02-20</lastmod>
        <image:image>
            <image:loc>https://img.wazly.net/profile.jpg</image:loc>
        </image:image>
    </url>
</urlset>

API

Create XML instance

From string

$writer = new Writer('<items></items>');

or

$writer = new Writer;
$writer->loadFromString('<items></items>');

From file

$writer = new Writer;
$writer->loadFromFile('/path/to/src.xml');

Store XML as file

$writer->store('/path/to/dest.xml');

or

// Only when loaded from file
$writer->store();

simple-xml-writer's People

Contributors

knj avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.