Advertisement
TomJarvis

Lower Case Plugin

Nov 28th, 2015
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. <?php
  2. // Lower Case plugin using http://php.net/manual/en/function.strtolower.php
  3. function wikiplugin_lowcase($data, $params)
  4. {
  5. extract($params, EXTR_SKIP);
  6. $ret = strtolower($data);
  7. return $ret;
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement