Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a php script that looks like this:

system("$command $location");

and that part works fine. However, I would like to then take the results and run another, different $othercommand on the results. I tried doing something like this:

$variable = system("$command $location");
exec($othercommand $variable);

that didnt work, and when i return $variable it is a whole lot more info than just the filename.txt i want. Can i use a regular expression or some output control function to trim $variable down to just the filename.txt?

share|improve this question
it would be easier when you tell us what you want to accomplish. e.g what ist the $command ? what are you trying to do ? – Rufinus Aug 23 '10 at 22:36
What kind of command are you running? And what is the result? And also, you may want to consider escaping your commands and variables using escapeshellcmd and escapeshellarg. – bogeymin Aug 23 '10 at 22:37
yes, you can use a regular expression to clean up the output. satisfied? – Byron Whitlock Aug 23 '10 at 22:41

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.