Skip to content

Instantly share code, notes, and snippets.

@rnstux
Created August 12, 2014 19:44
Show Gist options
  • Save rnstux/c63ab114987a9424d381 to your computer and use it in GitHub Desktop.
Save rnstux/c63ab114987a9424d381 to your computer and use it in GitHub Desktop.
<?php
echo obtenerserieSAT("3230303031303030303030323030303031343238");
function obtenerserieSAT($str) {
$serie = "";
for ($i = 1; $i < strlen($str); $i = $i + 2)
$serie .= substr($str,$i,1);
return $serie;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment