Created
July 24, 2013 08:36
-
-
Save xboston/6068932 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<pre><?php | |
$di = new Phalcon\DI\FactoryDefault(); | |
\Phalcon\Tag::getEscaperService(); | |
$string = 'Русский'; | |
Phalcon\Tag::setDefault("name", $string); | |
echo $string; | |
echo PHP_EOL; | |
echo Phalcon\Tag::getValue("name"); | |
echo PHP_EOL; | |
echo Phalcon\Tag::textField("name"); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment