Having a bit of problem with this. Script A calls/includes Script B. Script B has to execute a system call and return to Script A. Fails in flames. When I call Script B on its own, it works just fine, I cannot for the life of me get it to work by calling it on A. Ive already tried

  • Including it on A
  • Calling it with another system call within A
  • Making a bash script that calls B and then calling that bash script with A (I N C E P T I O N)

What are my options here?

Edit for code:

<?php
//B.php
//works fine when called on its own
function readsite ($url)
{
      $output=system("curl -ks $url");
      return $output;
}
?>


<?php
//A.php
include_once("B.php");
$url="www.google.com";
$read=readsite($url);
echo $read;
?>
link|improve this question
3  
What error(s) are you getting? Can you give source examples of how you're calling it and how you're getting results? – Zimzat Apr 15 '11 at 14:54
What does your script do? Maybe you have some different paths / environmental variables / etc, but I cannot tell... Be more verbose. – edem Apr 15 '11 at 14:54
B.php may execute on it's own, because all it does is define the function, not actually execute it – Mark Baker Apr 15 '11 at 15:07
if the script's failing in flames, shouldn't you be trying to find a fire extinguisher instead of posting here? – Marc B Apr 15 '11 at 15:10
1  
My guess from the code is that you need to set http:// before the URL, but we need to see the error. – lonesomeday Apr 15 '11 at 15:10
show 3 more comments
feedback

1 Answer

I assume that the problem you are trying to solve here is fetching the contents of a website.

Give the following a try:

function readsite($url) {
    $ch = curl_init();
    curl_setopt($ch,  CURLOPT_URL, $url);
    curl_setopt($ch,  CURLOPT_RETURNTRANSFER, true); 
    $result = curl_exec ($ch); 
    curl_close($ch);
    return $result;
}

The curl extension provides you with a relatively sane and stable way to fetch stuff in php. Look at the docs for more information

This assumes availability of the php-curl extension though.

And of course (as lonesomeday pointed out) you should add the scheme to the url (use 'http://www.google.com' as url).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.