PHPWORD我如何使用函数addText而不会中断

时间:2016-07-18 10:46:57

标签: phpword

示例:hello world

我想在一个段落中显示上面没有分手

$(document).on('change', '#category', editfunction);

function editfunction() {
    var value = $(this).val();
    console.log(value);
    // AJAX...
}
以这种方式。将有3个休息

哪一段会影响休息?

1 个答案:

答案 0 :(得分:1)

PHPWord addTextRun method's description

使用textrun,您可以在一个段落中添加文本和文本扩展名。

$textrun = $section->addTextRun();
$textrun->addText("hello");
$textrun->addImage('image URL');
//if you want to seperate the text
//$textrun->addTextBreak();
$textrun->addText("hello");