Gets the contents of a memory area p
Contents |
string wb_peek (int address, [, int length])
// Read the contents of a string
echo wb_peek(wb_get_address("Demo string"));
// Read a WBOBJ structure
define("WBOBJ", "Vhwnd/Vid/Vuclass/litem/lsubitem/Vstyle/Vparent/Vhandler/Vlparam/V8lparams/Vpbuffer");
define("WBOBJ_RAW", "V3l2V13");
define("WBOBJ_SIZE", 72);
$wbobj = unpack(WBOBJ, wb_peek($window, WBOBJ_SIZE));
print_r($wbobj);