Skip to content

Instantly share code, notes, and snippets.

@enlacee
Last active December 29, 2015 03:09
Show Gist options
  • Save enlacee/7606148 to your computer and use it in GitHub Desktop.
Save enlacee/7606148 to your computer and use it in GitHub Desktop.
<?php
// -- leer archivo
echo file_get_contents(__FILE__);
$fp = fopen('data.txt', 'w');
fwrite($fp, '123');
fclose($fp);
// -- eliminar cosas raraas en string
utf8_decode($string);
array_slice($arra,0,6);
// -- Capitalize
ucwords()
// -- random (array)
shuffle()
// -- obtener objeto funcione
$m = get_class_methods($this->paginator);
echo "<pre>"; print_r($m);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment