XAMPP + Perl + PHP。不知道如何运行 Perl 脚本
这是非常愚蠢的,但我似乎完全迷失在尝试使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须将 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