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

setValue deleting breaklines #2323

Closed
Szmit2 opened this issue Nov 9, 2022 · 3 comments
Closed

setValue deleting breaklines #2323

Szmit2 opened this issue Nov 9, 2022 · 3 comments
Milestone

Comments

@Szmit2
Copy link

Szmit2 commented Nov 9, 2022

Describe the Bug

When I use "$document->setValue('TRESC_UMOWY', $tresc_umowy['zasady']);" and save the file, phpword deletes all breaklines in $tresc_umowy['zasady']. How can I prevent that?

Steps to Reproduce

$tresc_umowy['zasady'] = "
a) loremipsum lorem ipsum
b) lorem ipsum lorem ipsum
"
$document->setValue('TRESC_UMOWY', $tresc_umowy['zasady']);

Expected Behavior

In word document I expected:

a) loremipsum lorem ipsum
b) lorem ipsum lorem ipsum

Current Behavior

What I got:
a) loremipsum lorem ipsumb) lorem ipsum lorem ipsum

Context

Please fill in your environment information:

  • PHP Version: 7.2
  • PHPWord Version:
@xpolter
Copy link

xpolter commented Nov 21, 2022

Hello

Use str_replace(PHP_EOL, '<w:br/>', $value)

@lebuhorskiy
Copy link

#2522

@Progi1984 Progi1984 added this to the 2.0.0 milestone Jan 7, 2024
@Progi1984
Copy link
Member

Fixed by #2522

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

No branches or pull requests

4 participants