Shell_exec无法在php中运行

时间:2014-04-25 08:00:38

标签: php

我试图通过使用shell_exec从php中获取url的url,但是当我在浏览器中运行url时它不起作用它给出了响应,请帮帮我

$iurl = "iurl=http://**.**.***.***/Minimax/ContentDownload/SendSMS.aspx?Key=".$key."^Mobile=92".$caller_id."^Telco=".$telco."^ShortCode=".$short_code."^Message=".$msg."";  

$url = "http://**.**.***.*/telenor/web_request.aspxicommand=insert&icaller_id=".$caller_id."&iservice=".$short_code."&iunique_id=".$datetime."&".$iurl."";

$file = shell_exec($url);

1 个答案:

答案 0 :(得分:0)

我不确定你想要实现的目标,但也许这些链接会让你走上正轨。

Open URL with PHP

How to get page content using cURL?

PHP: how can I load the content of a web page into a variable?