16 lines
		
	
	
		
			427 B
		
	
	
	
		
			PHP
		
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			427 B
		
	
	
	
		
			PHP
		
	
	
| <?php
 | |
| set_include_path( get_include_path().PATH_SEPARATOR."..");
 | |
| include_once("xlsxwriter.class.php");
 | |
| 
 | |
| $rows = array(
 | |
|   array("not clickable","also not clickable",'=HYPERLINK("http://github.com", "Click for Github.com")'),
 | |
| );
 | |
| $writer = new XLSXWriter();
 | |
| foreach($rows as $row)
 | |
| 	$writer->writeSheetRow('Sheet1', $row);
 | |
| 
 | |
| $writer->writeToFile('xlsx-hyperlink.xlsx');
 | |
| //$writer->writeToStdOut();
 | |
| //echo $writer->writeToString();
 | |
| 
 |