How to use PHP & Draw Line in excel (Excel.Application) The Learn / tutorial php programming how to using PHP Draw Line in excel
ShotDev Focus:
- PHP & Draw Line in excel.
Example
php_draw_line.php
<html>
<head>
<title>ShotDev.Com Tutorial</title>
</head>
<body>
<?
//*** Get Document Path ***//
$strPath = realpath(basename(getenv($_SERVER["SCRIPT_NAME"]))); // C:/AppServ/www/myphp
//*** Excel Document Root ***//
$strFileName = "MyXls/MyExcel.xls";
//*** Connect to Excel.Application ***//
$xlApp = new COM("Excel.Application");
$xlBook = $xlApp->Workbooks->Add();
$xlSheet1 = $xlBook->Worksheets(1);
$xlApp->Application->Visible = False;
//*** Sheet 1 ***//
$xlSheet1->Name = "My Sheet1";
//*** Write text to Row 1 Column 1 ***//
$xlApp->ActiveSheet->Cells(1,1)->Value = "ShotDev.Com";
$x1 = $xlApp->ActiveSheet->Range("C2")->Left;
$y1 = $xlApp->ActiveSheet->Range("C2")->Top;
$x2 = $xlApp->ActiveSheet->Range("E2")->Left;
$y2 = $xlApp->ActiveSheet->Range("E2")->Top;
$xlApp->ActiveSheet->Range("C2:E2")->Select();
$xlApp->ActiveSheet->Shapes->AddLine($x1, $y1, $x2, $y2)->Select();
@unlink($strFileName); //*** Delete old files ***//
$xlBook->SaveAs($strPath."/".$strFileName); //*** Save to Path ***//
//*** Close & Quit ***//
$xlApp->Application->Quit();
$xlApp = null;
$xlBook = null;
$xlSheet1 = null;
?>
Excel Created <a href="<?=$strFileName?>">Click here</a> to Download.
</body>
</html>
Create a php file and save to path root-path/myphp/
Run
http://localhost/myphp/php_draw_line.php
Screenshot


