Function h

Convenience method for htmlspecialchars.

Link: http://book.cakephp.org/3.0/en/core-libraries/global-constants-and-functions.html#h
Copyright: Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
License: MIT License
Located at Core/functions.php
h( string|array|object $text boolean $double true string|null $charset null )

Parameters summary

string|array|object $text <p>Text to wrap through htmlspecialchars. Also works with arrays, and objects. Arrays will be mapped and have all their elements escaped. Objects will be string cast if they implement a <code>__toString</code> method. Otherwise the class name will be used.</p>
boolean $double = true Encode existing html entities.
string|null $charset = null <p>Character set to use when escaping. Defaults to config value in <code>mb_internal_encoding()</code> or 'UTF-8'.</p>

Returns

  • string Wrapped text.

© 2005–2016 The Cake Software Foundation, Inc.
Licensed under the MIT License.
CakePHP is a registered trademark of Cake Software Foundation, Inc.
We are not endorsed by or affiliated with CakePHP.
http://api.cakephp.org/3.2/function-h.html