Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>By default, Views are encoded in ISO-8859-1, and not UTF-8 ; maybe this is the reason for your problem.</p> <p>You'll find more explanations and an example in this section of Survive the Deep End : <a href="http://www.survivethedeepend.com/zendframeworkbook/en/1.0/a.not.so.simple.hello.world.tutorial#zfbook.a.not.so.simple.hello.world.tutorial.step3.implement.application.bootstrapping" rel="nofollow noreferrer">5.4. Step 3: Implement Application Bootstrapping</a> -- it's a bit long, but some stuff there might help you...</p> <p>Here is a quote from that page :</p> <blockquote> <p>At present, <code>Zend_View</code>, in stark contrast to other components, uses a default character set of ISO-8859-1 (as do View Helpers) which simply won't do if you are going to output multibyte characters</p> </blockquote> <p>And also :</p> <blockquote> <p>To change the default, we should instantiate a new instance of <code>Zend_View</code>, set a more appropriate default character encoding of UTF-8, and implant this altered View object into the ViewRenderer Action Helper.</p> </blockquote> <p>And there is another way, using the .ini configuration file, explained in the next chapter ; especially, section <a href="http://www.survivethedeepend.com/zendframeworkbook/en/1.0/standardise.the.bootstrap.class.with.zend.application#zfbook.standardise.the.bootstrap.class.with.zend.application.handling.setting.of.standard.component.defaults" rel="nofollow noreferrer">6.5. Step 4: Handling Setting Of Standard Component Defaults</a>.</p>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload