show/hide this revision's text 2 wrong quotes

Stream Handlers allow you to extend the "FileSystem" with logic that as far as I know is quite difficult to do in most other languages.

For example with the MS-Excel Stream handler you can create a MS Excel file in the following way:

$fp = fopen("xlsfile://tmp/test.xls", "wb");
if (!is_resource($fp)) { 
    die(”Cannot die("Cannot open excel file”)file");
}

$data= array(
    array("Name" => "Bob Loblaw", "Age" => 50,  
    array("Name" => "Popo Jijo", "Age" => 75,  
    array("Name" => "Tiny Tim", "Age" => 90
); 

fwrite($fp, serialize($data));
fclose($fp);
show/hide this revision's text 1

Stream Handlers allow you to extend the "FileSystem" with logic that as far as I know is quite difficult to do in most other languages.

For example with the MS-Excel Stream handler you can create a MS Excel file in the following way:

$fp = fopen("xlsfile://tmp/test.xls", "wb");
if (!is_resource($fp)) { 
    die(”Cannot open excel file”);
}

$data= array(
    array("Name" => "Bob Loblaw", "Age" => 50,  
    array("Name" => "Popo Jijo", "Age" => 75,  
    array("Name" => "Tiny Tim", "Age" => 90
); 

fwrite($fp, serialize($data));
fclose($fp);