2

我正在尝试通过 PHP 从图像的 EXIF 数据中获取焦距。

这是我到目前为止的代码:

$exif = exif_read_data("$photo");
$length10 = $exif['FocalLength'];
$length = eval($length10);

在这种情况下,$length10 会为 105 毫米返回类似“1050/10”的内容。我不知道为什么。我要做的就是让 PHP 进行数学运算以返回 105。但是,当我运行它时,我收到以下错误消息:

[04-Nov-2012 20:06:39] PHP Parse error:  syntax error, unexpected $end in index.php(52) : eval()'d code on line 1

为什么?

4

1 回答 1

8

因为1050/10不是有效的 PHP。它没有终止;语句,并导致语法错误。

php > eval("1050/10");
PHP Parse error:  syntax error, unexpected end of file in php shell code(1) : eval()'d code on line 1

而不是它(这在技术上是危险的,因为即使它来自 EXIF,eval()您也在有效地处理用户输入/),建议使用正则表达式拆分或捕获操作数,然后自己执行操作。

// Test if the value matches the division pattern
if (preg_match('~^(\d+)/(\d+)$~', $length10, $operands)) {
  // Following a successful match, $operands is an array 
  // containing the full matched string and the two numbers captured
  // in indices [1],[2]

  // Watch for div by zero!
  if ($matches[2] !== 0) {
    echo $operands[1] / $operands[2];
  }
}
else {
  echo $length10;
}
于 2012-11-05T02:24:33.500 回答