Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

TemplateProcessor corrupt file if you setValue with '&' inside v0.15 #1467

Open
1 of 3 tasks
GITFenix opened this issue Sep 12, 2018 · 3 comments
Open
1 of 3 tasks

TemplateProcessor corrupt file if you setValue with '&' inside v0.15 #1467

GITFenix opened this issue Sep 12, 2018 · 3 comments

Comments

@GITFenix
Copy link

GITFenix commented Sep 12, 2018

This is:

Expected Behavior

Creating not corrupted file

Current Behavior

When I try setValue in template when there is ''&' I get corruped file. If I replace it with something else it works just fine.

Failure Information

image

How to Reproduce

$templateProcessor = new \PhpOffice\PhpWord\TemplateProcessor($this->fullTemplatePath);
$templateProcessor->setValue('jobPosition', '&');

To reproduce you have to setValue and provide '&' in the content

Context

  • PHP version: 7.2
  • PHPWord version: 0.15
@caugner
Copy link
Contributor

caugner commented Oct 5, 2018

The same happens when inserting text that includes "&".

@caugner
Copy link
Contributor

caugner commented Oct 5, 2018

Workaround:

$templateProcessor = new \PhpOffice\PhpWord\TemplateProcessor($this->fullTemplatePath);
$templateProcessor->setValue('jobPosition', htmlentities('&', ENT_XML1));

@jaydadhania08
Copy link

Using htmlspecialchars() solves this problem for &, <, and >.
Use ENT_QUOTES flag to also include ' and ".
As of PHP 7.3.5, using ENT_QUOTES | ENT_XML1 works same as ENT_QUOTES.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

No branches or pull requests

3 participants