Toms Homepage
  Home    Downloads    Your Account    Forums  
  Create an account
Modules
· Home
· Games
· My Gallery
· PHP Manual
· PHP-Nuke HOWTO
· Web Links
· Your Account
 
Who's Online
Welcome, Anonymous
Nickname

Password

Security Code
Security Code
Type Security Code


(Register)

Membership:
Latest: JarrodHer
New Today: 274
New Yesterday: 515
Overall: 46125

People Online:
Visitors: 103
Members: 11
Total: 114

Online Now:
 DeeSander
 RonFortie
 MaynardMc
 KellyTobi
 VenettaWe
Poland JarrodHer
COM JanSimpso
 LuisDibbl
 Rita26Y
COM DesmondEd
 AimeeWilk
 
DOMDocument->load()

DOMDocument->load()

DOMDocument->load() --  Load XML from a file

Description

class DOMDocument {

bool load ( string filename )

}

Loads an XML document from a file.

This method may also be called statically to load and create a DOMDocument object. The static invocation may be used when no DOMDocument properties need to be set prior to loading.

Parameters

filename

The path to the XML document.


Return Values

Returns TRUE on success or FALSE on failure.

Examples

Example 1. Creating a Document

<?php
$doc
= DOMDocument::load('book.xml');
echo
$doc->saveXML();

$doc = new DOMDocument();
$doc->load('book.xml');
echo
$doc->saveXML();
?>


All logos and trademarks in this site are property of their respective owner. The comments are property of their posters, all the rest © 2004 by Tom Nitzschner.
Web site engine code is Copyright © 2003 by PHP-Nuke. All Rights Reserved. PHP-Nuke is Free Software released under the GNU/GPL license.
Page Generation: 0.094 Seconds

:: VereorLCARS phpbb2 style by Vereor :: PHP-Nuke theme by www.nukemods.com ::