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
<?php | |
//elConspirdor.com | |
//Segunda función utilizada | |
function oo2($b) { | |
//Invierte $b y lo separa por '|' | |
$h = explode("|", strrev($b)); | |
//Separa el primer vector $h[0] en '*' | |
$d = explode("*", $h[0]); |