超链接
Last updated
$config = ['path' => './tests'];
$excel = new \Vtiful\Kernel\Excel($config);
$links = $excel->openFile('source.xlsx')
->openSheet()
->getHyperlinks();
print_r($links);
// Array
// (
// [0] => Array
// (
// [first_row] => 1
// [first_col] => 1
// [last_row] => 1
// [last_col] => 1
// [url] => https://www.php.net
// [location] =>
// [display] => PHP 官网
// [tooltip] => 点击访问
// )
// )