如何从动态数据在phpword的一行中添加链接?

时间:2019-07-15 12:25:08

标签: php

我正在用动态数据制作Word文档,但是整行都是这样的image,我希望我的行image是这样,php word中是否有任何方法可以做到这一点。

$section->addLink(
    $data[$j]['ArticleURL'],
    cleanstring($data[$j]['publicationPrint']).formatDateForEmail(
        $data[$k]['previewDate']),
    $linkFontStyleName,
    $fontStyleIndexPara);

1 个答案:

答案 0 :(得分:0)

根据您提供给我们的图像,我想是这样的:

$section->addLink(
    'The Indian Wire',
    [
        'url'=> 'link href...'
        'font'=> 'font name...'
        'color'=> 'text color...'

    ]
);
$section->addText(' | July-4-2019 | By - Bureau');

查看文档:{​​{3}}