Skip to content

Instantly share code, notes, and snippets.

@komeiji-satori
Created March 24, 2018 09:21
Show Gist options
  • Save komeiji-satori/1aa7225850e91ffba36f2ddc5a674e1b to your computer and use it in GitHub Desktop.
Save komeiji-satori/1aa7225850e91ffba36f2ddc5a674e1b to your computer and use it in GitHub Desktop.
<?php
function utf8_strrev($str){
preg_match_all('/./us', $str, $ar);
return join('', array_reverse($ar[0]));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment