<?php
 
include 'stringlist_class.php';
 
 $str=new Stringlist("Key=Value\nKey2=Value2"); 
 
 
echo $str->Values('Key2'); // return Value2
 
$str->SaveToFile('file.txt'); //will write Key=Value\nKey2=Value2 2 lines on file.txt
 
$str->Count(); // return 2 
 
$str->Text(); //Return All Text
 
$str->Text('new Text=asdasd'); // Set The Text
 
$str->Lines()->Add('newline=newValue'); // Add a New Line.
 
?>
 
 |