Last active
November 4, 2023 23:27
-
-
Save simivar/037b13a9bbd53ae5a092d8f6d9828bc3 to your computer and use it in GitHub Desktop.
PHP function to reverse print_r function
This file contains 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 | |
/** | |
* I've published a fully-tested Composer library with type-casting. | |
* @see https://github.com/simivar/reverse-print-r | |
*/ | |
/** | |
* Matt: core | |
* Trixor: object handling | |
* lech: Windows suppport | |
* simivar: null support | |
* | |
* @see http://php.net/manual/en/function.print-r.php | |
**/ | |
function print_r_reverse($input) { | |
$lines = preg_split('#\r?\n#', trim($input)); | |
if (trim($lines[ 0 ]) != 'Array' && trim($lines[ 0 ]) != 'stdClass Object') { | |
// bottomed out to something that isn't an array or object | |
if ($input === '') { | |
return null; | |
} | |
return $input; | |
} else { | |
// this is an array or object, lets parse it | |
$match = array(); | |
if (preg_match("/(\s{5,})\(/", $lines[ 1 ], $match)) { | |
// this is a tested array/recursive call to this function | |
// take a set of spaces off the beginning | |
$spaces = $match[ 1 ]; | |
$spaces_length = strlen($spaces); | |
$lines_total = count($lines); | |
for ($i = 0; $i < $lines_total; $i++) { | |
if (substr($lines[ $i ], 0, $spaces_length) == $spaces) { | |
$lines[ $i ] = substr($lines[ $i ], $spaces_length); | |
} | |
} | |
} | |
$is_object = trim($lines[ 0 ]) == 'stdClass Object'; | |
array_shift($lines); // Array | |
array_shift($lines); // ( | |
array_pop($lines); // ) | |
$input = implode("\n", $lines); | |
$matches = array(); | |
// make sure we only match stuff with 4 preceding spaces (stuff for this array and not a nested one) | |
preg_match_all("/^\s{4}\[(.+?)\] \=\> /m", $input, $matches, PREG_OFFSET_CAPTURE | PREG_SET_ORDER); | |
$pos = array(); | |
$previous_key = ''; | |
$in_length = strlen($input); | |
// store the following in $pos: | |
// array with key = key of the parsed array's item | |
// value = array(start position in $in, $end position in $in) | |
foreach ($matches as $match) { | |
$key = $match[ 1 ][ 0 ]; | |
$start = $match[ 0 ][ 1 ] + strlen($match[ 0 ][ 0 ]); | |
$pos[ $key ] = array($start, $in_length); | |
if ($previous_key != '') { | |
$pos[ $previous_key ][ 1 ] = $match[ 0 ][ 1 ] - 1; | |
} | |
$previous_key = $key; | |
} | |
$ret = array(); | |
foreach ($pos as $key => $where) { | |
// recursively see if the parsed out value is an array too | |
$ret[ $key ] = print_r_reverse(substr($input, $where[ 0 ], $where[ 1 ] - $where[ 0 ])); | |
} | |
return $is_object ? (object)$ret : $ret; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I've published a fully-tested Composer library with type-casting. See simivar/reverse-print-r if you want to use that.
/cc @divinity76 @digitalowlnyc