XAMPP + Perl + PHP。不知道如何运行 Perl 脚本

发布于 2024-08-16 11:32:24 字数 468 浏览 4 评论 0原文

这是非常愚蠢的,但我似乎完全迷失在尝试使用 XAMPP 测试 Perl 命令行应用程序时。我下载了“ExifTool by Phil Harvey”,并将文件解压到 htdocs 内的一个文件夹中,其中包含一个 index.php,我希望在其中为 ExifTool 提供的功能设置一个 PHP 接口。实际上,我什至无法运行一个简单的“Hello World”Perl 脚本来从 PHP 脚本运行并处理输出。我尝试使用 shell_exec 但不确定是否输入了正确的命令。(./exiftool t/images/ExifTool.jpg,但输出什么也没有。)

[我正在尝试创建一个可以上传图像并在 ExifTool 的帮助下显示 exif 信息的网站,假设 ./exiftool -jt/images/ExifTool.jpg 返回一些不错的 JSON 数据。但我不知道如何让它开始工作:( 谢谢。]

This is very stupid but I seem to be completely lost trying to test a Perl command-line application with XAMPP. I downloaded the 'ExifTool by Phil Harvey' and extracted the files in a folder within htdocs with an index.php in it, in which I hope to set up a PHP interface to the functionalities provided by ExifTool. Actually I can't even run a simple "Hello World" Perl script to run from a PHP script and handle the output. I tried using shell_exec but not sure if I'm putting the right commands in. (./exiftool t/images/ExifTool.jpg, but the output is nothing.)

[I'm trying to make a website where I can upload an image and have the exif info displayed with the help of ExifTool assuming ./exiftool -j t/images/ExifTool.jpg returns some nice JSON data. But I'm not sure how to get it to work to begin with :( Thanks.]

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

太阳男子 2024-08-23 11:32:24

您必须将 perl 解释器添加到传递给 shell_exec() 的字符串中,exiftool 本身不会直接运行。

如果您只需要处理 Exif 数据,可以使用 PHP 直接支持: http:// /php.net/manual/en/book.exif.php

You have to add the perl interpreter to the string you pass to shell_exec(), exiftool itself won't be run directly.

If you just need to work with Exif data, you can use PHP direct support: http://php.net/manual/en/book.exif.php

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文