cURL没有设置网址

时间:2015-10-07 18:30:11

标签: php curl binary

此PHP允许用户使用二进制或纯文本的URL提交表单。然后将URL转换为纯文本,我使用cURL加载响应,然后将其转换回二进制文件。如果您想知道,它来自可以翻译文本的二进制翻译器 - >二进制和二进制 - >文字,但也接受网址。

问题:正如您所见,二进制网址已转换为文本,然后传递给cURL。明文值存储在$newtext中。我可以确认binaryToText()通过我做的一些调试确实可以正常工作。纯文本URL(请参阅if语句的else部分)已成功设置,但转换后的二进制文件不是。

实施例

e.g。 $text = "http://google.co.uk";isBinary($text) == false

curl_setopt($ch, CURLOPT_URL, $text);< - 这有效

e.g。 $text = "01101000011101000111010001110000001110100010111100101111011001110110111101101111011001110110110001100101001011100110001101101111001011100111010101101011"(相同的Google网址) (isBinary($text) == true

$newtext = binaryToText($text); curl_setopt($ch, CURLOPT_URL, $newtext);

echo curl_error($ch); - >输出“没有设置URL!”

有问题的地方......我看不到它。

代码列表

$text = $_POST["text"];
if(startsWith($text, "http://") || startsWith($text, "https://") || startsWith($text, textToBinary("http://")) || startsWith($text, textToBinary("https://"))) {
  // URL - accepts binary (prefered), or plain text url; returns binary.
  $ch = curl_init();
  if(isBinary($text)) {
    $newtext = binaryToText($text);
    curl_setopt($ch, CURLOPT_URL, $newtext);
  } else {
    curl_setopt($ch, CURLOPT_URL, $text);
  }
  curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  curl_setopt($ch, CURLOPT_USERAGENT, "MY USERAGENT");
  if(isset($_GET["r"])) curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
  $result=curl_exec($ch);
  echo curl_error($ch);
  curl_close($ch);
  echo textToBinary($result);
} else if...

功能

function isBinary($input) {
  return !preg_match('/[^(0|1)]/', $input); // contains nothing but 0 and 1
}
function binaryToText($input) {
  $return = '';
  $chars = explode("\n", chunk_split(str_replace("\n", '', $input), 8));
  $_I = count($chars);
  for($i = 0; $i < $_I; $return .= chr(bindec($chars[$i])), $i++);
  return $return;
}

修改$newtext的输出包含在此输出中:

text: 01101000011101000111010001110000001110100010111100101111011001110110111101101111011001110110110001100101001011100110001101101111001011100111010101101011
newtext: http://google.co.uk
No URL set!00000000

由此:

if(isBinary($text)) {
  echo "text: ".$text."\n";
  $newtext = binaryToText($text);
  echo "newtext: ".$newtext."\n";
  curl_setopt($ch, CURLOPT_URL, $newtext);
} else {
  curl_setopt($ch, CURLOPT_URL, $text);
}

2 个答案:

答案 0 :(得分:0)

浏览代码并测试输出。

最可能的情况是您的isBinary()功能出现故障。

使用

进行测试输出
print_r(isBinary($text))

查看它返回的内容。

答案 1 :(得分:0)

解决了!

我的$newtext变量中有一个NUL字节 - 所以当echo工作时,cURL不接受它作为有效的URL。我在binaryToText()方法中使用了以下代码行:

$return = str_replace("\0", "", $return);

这会将所有NUL字符替换为""。很高兴它有效!