Created
February 20, 2013 04:35
-
-
Save Kolesias123/4992918 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
| <? | |
| require 'Init.php'; | |
| $testing = __('¿Que Carajo Estoy Haciendo?'); | |
| $testing->replace('Haciendo', 'Poniendo')->lower(); | |
| echo $testing, '<br />'; // ¿que carajo estoy poniendo? | |
| echo $testing->encode('base64'), '<br />'; // wr9xdWUgY2FyYWpvIGVzdG95IHBvbmllbmRvPw== | |
| echo $testing->original; // ¿Que Carajo Estoy Haciendo? | |
| ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment