delete, select & insert upgraded More utility function (node to array, arrayToNode) XMLDB special move command PHP Unit Test
		
			
				
	
	
		
			15 lines
		
	
	
		
			397 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			397 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
    // $Id: spl_examples.php 1262 2006-02-05 19:35:31Z lastcraft $
 | 
						|
 | 
						|
    class IteratorImplementation implements Iterator {
 | 
						|
        function current() { }
 | 
						|
        function next() { }
 | 
						|
        function key() { }
 | 
						|
        function valid() { }
 | 
						|
        function rewind() { }
 | 
						|
    }
 | 
						|
 | 
						|
    class IteratorAggregateImplementation implements IteratorAggregate {
 | 
						|
        function getIterator() { }
 | 
						|
    }
 | 
						|
?>
 |