apsxj/xml

XML Parsing and Response Library

v0.1.0 2021-05-09 00:41 UTC

This package is auto-updated.

Last update: 2024-05-17 23:42:13 UTC


README

XML Parsing and Response Library

Getting Started

  1. Add the following to your composer.json file:
  "require": {
    "apsxj/xml": "dev-main"
  },
  "repositories": [
    {
      "type": "git",
      "url": "https://github.com/apsxj/xml.git"
    }
  ]
  1. Run composer install

  2. Before calling any of the methods, require the vendor autoloader

// For example, from the root directory...
require_once(__DIR__ . DIRECTORY_SEPARATOR . 'vendor' . DIRECTORY_SEPARATOR . 'autoload.php');
  1. To create an Response object and render it:
<?php

// unwrap classes from the apsxj\xml namespace
use apsxj\xml\Node;
use apsxj\xml\Doc;
use apsxj\xml\Response;

// Create the doctype declaration node
$doctype = Node::element(
  '!DOCTYPE',
  array(
    'html' => 'html'
  )
);

// Create the HTML node
$html = Node::element(
  'html',
  array(
    'lang' => 'en',
    'class' => 'h-100'
  ),
  array(
    Node::text('<head><title>It works!</title></head><body><h1>It works!</h1></body>')
  )
);

// Create the Document
$doc = new Doc($doctype, $html);

// Pass the document to a new Response object
$response = new Response($doc);

// Render the response
$response->render(200);