/home/mjc1/public_html/manage/writeexcel/example-stocks.php


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<?php

set_time_limit
(10);

require_once 
"class.writeexcel_workbook.inc.php";
require_once 
"class.writeexcel_worksheet.inc.php";

$fname tempnam("/tmp""stocks.xls");
$workbook = &new writeexcel_workbook($fname);
$worksheet =& $workbook->addworksheet();

# Set the column width for columns 1, 2, 3 and 4
$worksheet->set_column(0315);

# Create a format for the column headings
$header =& $workbook->addformat();
$header->set_bold();
$header->set_size(12);
$header->set_color('blue');

# Create a format for the stock price
$f_price =& $workbook->addformat();
$f_price->set_align('left');
$f_price->set_num_format('$0.00');

# Create a format for the stock volume
$f_volume =& $workbook->addformat();
$f_volume->set_align('left');
$f_volume->set_num_format('#,##0');

# Create a format for the price change. This is an example of a conditional
# format. The number is formatted as a percentage. If it is positive it is
# formatted in green, if it is negative it is formatted in red and if it is
# zero it is formatted as the default font colour (in this case black).
# Note: the [Green] format produces an unappealing lime green. Try
# [Color 10] instead for a dark green.
#
$f_change =& $workbook->addformat();
$f_change->set_align('left');
$f_change->set_num_format('[Green]0.0%;[Red]-0.0%;0.0%');

# Write out the data
$worksheet->write(00'Company'$header);
$worksheet->write(01'Price',   $header);
$worksheet->write(02'Volume',  $header);
$worksheet->write(03'Change',  $header);

$worksheet->write(10'Damage Inc.'     );
$worksheet->write(1130.25,     $f_price);  # $30.25
$worksheet->write(121234567,   $f_volume); # 1,234,567
$worksheet->write(130.085,     $f_change); # 8.5% in green

$worksheet->write(20'Dump Corp.'      );
$worksheet->write(211.56,      $f_price);  # $1.56
$worksheet->write(227564,      $f_volume); # 7,564
$worksheet->write(23, -0.015,    $f_change); # -1.5% in red

$worksheet->write(30'Rev Ltd.'        );
$worksheet->write(310.13,      $f_price);  # $0.13
$worksheet->write(32321,       $f_volume); # 321
$worksheet->write(330,         $f_change); # 0 in the font color (black)

$workbook->close();

header("Content-Type: application/x-msexcel; name=\"example-stocks.xls\"");
header("Content-Disposition: inline; filename=\"example-stocks.xls\"");
$fh=fopen($fname"rb");
fpassthru($fh);
unlink($fname);

?>