PHP Classes

File: tools/unserialize.php

Recommend this page to a friend!
  Classes of ask sa sa   PHP LDAP admin   tools/unserialize.php   Download  
File: tools/unserialize.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: PHP LDAP admin
Perform operations to administer a LDAP server
Author: By
Last change:
Date: 1 year ago
Size: 787 bytes
 

Contents

Class file image Download
<?php

require '../lib/common.php';

echo
'<head><link type="text/css" rel="stylesheet" href="../htdocs/css/style.css" /></head>';
echo
'<body>'."\n";
$index = get_request('index','REQUEST');
if (! isset(
$_SESSION['backtrace'][$index]))
    die(
'No backtrace available...?');

$line = $_SESSION['backtrace'][$index];
echo
'<table class="result_table">';
printf('<tr class="hightlight"><td colspan="2"><b><small>%s</small></b></td><td>%s (%s)</td></tr>',
   
_('File'),isset($line['file']) ? $line['file'] : $last['file'],isset($line['line']) ? $line['line'] : '');

printf('<tr><td>&nbsp;</td><td><b><small>%s</small></b></td>',
   
_('Function'),$line['function']);

echo
'<td><small><pre>';
print_r($line['args']);
echo
'</pre></small></td>';

echo
'</tr>';
echo
'</table>';
echo
'</body>';
?>