14 lines
		
	
	
		
			257 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			257 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| interface PHPParser_Unserializer
 | |
| {
 | |
|     /**
 | |
|      * Unserializes a string in some format into a node tree.
 | |
|      *
 | |
|      * @param string $string Serialized string
 | |
|      *
 | |
|      * @return array Statements
 | |
|      */
 | |
|     public function unserialize($string);
 | |
| }
 |