Skip to content

Instantly share code, notes, and snippets.

@Kolesias123
Created February 20, 2013 04:35
Show Gist options
  • Save Kolesias123/4992918 to your computer and use it in GitHub Desktop.
Save Kolesias123/4992918 to your computer and use it in GitHub Desktop.
<?
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