Jump to content

Does A String Extracting Tool Exist ?


phdphd

Recommended Posts

It would be simple exercise to take a php file like

 

<?php
    echo "Message 1<br>";
    $msg = "Hello";
    echo "Message 2<br>";
    $msg .= " World!";
    echo $msg;
?>

and, treating it as a text file, use string search functions to output

 

Message 1<br>
Message 2<br>
$msg

 

The difficult bit, if required, would be knowing that $msg now contains "Hello World".

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.