have a php file.
Code: Select all
<?php
$a = 1;
$b = 'hello world';
$_SESSION['id'] = 31;
$_GET['string'] = 'intnumber';
have a function that similar "var_dump,print_r" can export variable , but the difference is export all of variable in the php file.
like use a function export
Code: Select all
[int]a=1
[string]b='hello world'
[int]$_SESSION['id']=31
[string]$_GET['string'] = 'intnumber';