Hello,
From the following sample available in all packages: examples/Core/addLink/sample_1.php:
$docx->addLink('Link to Google', array('url'=> 'http://www.google.es'));
$docx->addText('And now the same link with some additional formatting:');
$linkOptions = array(
'url'=> 'http://www.google.es',
'color' => 'B70000',
'underline' => 'none'
);
$docx->addLink('Link to Google in red color and not underlined', $linkOptions);
No strikethrough is added to the link.
If we set strikeThrough as false:
$linkOptions = array(
'url'=> 'http://www.google.es',
'color' => 'B70000',
'underline' => 'none',
'strikeThrough' => false,
);
$docx->addLink('Link to Google in red color and not underlined', $linkOptions);
the output also has no strikethrough.
Regards.