gpt4 book ai didi

php - 在 php 服务器上使用 Symfony 运行进程时出错

转载 作者:行者123 更新时间:2023-12-04 08:23:45 25 4
gpt4 key购买 nike

我在 php 中开发了一个带有可清洗的 API,以使用 opencv 在 C++ 中运行算法。应用程序将照片发送到服务器,服务器又会启动一个负责处理此图像的 .exe 文件。通过终端执行文件时,算法正确处理图像。但是,为了通过 API 中的代码执行此处理,我使用的是 Symfony,更准确地说是 Process。好吧,当执行下面的行时,它总是告诉我找不到 .exe 文件。

$process = new Process(['feridas/exec', 'final.png']);
我也尝试了以下方法,但没有成功。
$process = new Process(['./exec', 'final.png']);
$process = new Process(['server-laravel/resources/feridas/exec']);
代码完整:
namespace App\Http\Controllers\Api;
use App\Http\Controllers\Controller;
use Illuminate\Http\Request;
use Symfony\Component\HttpFoundation\File\UploadedFile;
use Symfony\Component\Process\Process;

class ClassificationController extends Controller
{

public function process(Request $request)
{
/** @var $image UploadedFile*/
$image = $request->files->get('image');
if (empty($image)) {
throw new \Exception("Arquivo não fornecido.");
}

$validExtensions = ['image/jpeg', 'image/png', 'image/jpg'];

if (!in_array($image->getMimeType(), $validExtensions)) {
dd($image->getMimeType());
throw new \Exception("Arquivo não suportado");

}

if (!$image->move(resource_path('feridas'), $image->getClientOriginalName())) {
throw new \Exception("Error moving file.");
}

$newPath = resource_path('feridas/' . $image->getClientOriginalName());

return $this->processImage($newPath);
}

private function processImage($newPath){
$process = new Process(['ls', '-la', resource_path('feridas')]);

$process->run();
$process->wait();


if (!$process->isSuccessful()) {
return [
'success' => true, //ou false
'message' => 'Could not execute script: %s', $process->getErrorOutput()
];
throw new ProcessFailedException($process);
}

$output = $process->getOutput();
return [
'success' => true, //ou false
'message' => $output
];

}
}
输出:
enter image description here
通过终端执行相同的算法时,它会正确返回输出,算法的执行时间(以秒为单位)。
enter image description here

最佳答案

如果 Process 类中没有 cwd 参数值,则 getpwd() 获取 php 的当前路径。
Laravel 是入口点的路径,public/index.php .

var_dump(getcwd());

// /home/user/public
所以明确定义文件所在的绝对路径。
var_dump(resource_path('feridas/exec'));

// /home/user/resources/feridas/exec
尝试一下。
use Symfony\Component\Process\Process;

$process = new Process([resource_path('feridas/exec'), resource_path('feridas/final.png')]);

$process->run(function ($type, $buffer) {
if (Process::ERR === $type) {
echo 'ERR > '.$buffer;
} else {
echo 'OUT > '.$buffer;
}
});
如果这不起作用,请让我们知道下一个结果。
$process = new Process(['ls', '-la', resource_path('feridas/exec'), resource_path('feridas/final.png')]);
$process = new Process(['ls', '-la', resource_path('feridas/exec'), $newPath]);
// SSH Terminal

[root@dev ~]# /home/user/resources/feridas/exec /home/user/resources/feridas/final.png

[root@dev ~]# ls -la /home/user/resources/feridas/exec /home/user/resources/feridas/final.png

Symfony 流程文档 - https://symfony.com/doc/current/components/process.html#getting-real-time-process-output

对进一步执行结果的回答。
enter image description here
在第二个参数中输入要移动的目录, $cwd .
//$process = new Process(['ls', '-la', resource_path('feridas')]);
$process = new Process(['./exec'], resource_path('feridas'));


// arguments
// $command = ['./exec']
// $cwd = resource_path('feridas')
检查类参数 - https://github.com/symfony/process/blob/5.x/Process.php#L141
public function __construct(array $command, string $cwd = null, array $env = null, $input = null, ?float $timeout = 60)

关于php - 在 php 服务器上使用 Symfony 运行进程时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65374137/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com