使用php脚本解析输出2>&1

发布于 2024-11-16 22:34:11 字数 685 浏览 0 评论 0原文

我有一个 exec 命令,用于使 ffmpeg 工作。

$process = exec("/usr/local/bin/ffmpeg -i /home/g/Desktop/cave.wmv -deinterlace 
-acodec libfaac -ab 96k -ar 44100 -vcodec libx264 -s 480x320 -f flv /home/g/Desktop
/file.flv 2>&1 | php testing123.php") ;

在testing123.php 中我使用

$h = fopen('php://stdin', 'r'); $str = fgets($h); fclose($h);
//topic removed

 $sql = 'INSERT INTO table
(id,status) VALUES(?,?)';
$stmt3 = $conn->prepare($sql);
$result=$stmt3->execute(array(rand(),$str));

但是,正如您可能已经猜到的那样,只有当该文件最初从另一个文件中的exec 命令执行时,我才会获得一个数据库条目。 有没有办法继续执行文件或其他内容,以便每隔几秒钟将输入到文件的输出插入到我的数据库中?

I have an exec command I am using to make ffmpeg work.

$process = exec("/usr/local/bin/ffmpeg -i /home/g/Desktop/cave.wmv -deinterlace 
-acodec libfaac -ab 96k -ar 44100 -vcodec libx264 -s 480x320 -f flv /home/g/Desktop
/file.flv 2>&1 | php testing123.php") ;

In testing123.php I use

$h = fopen('php://stdin', 'r'); $str = fgets($h); fclose($h);
//topic removed

 $sql = 'INSERT INTO table
(id,status) VALUES(?,?)';
$stmt3 = $conn->prepare($sql);
$result=$stmt3->execute(array(rand(),$str));

However, as you may have guessed I get one database entry, only when the file initially executes from the exec command in the other file. Is there a way to keep executing the file or something else so that the output fed to the file can be inserted into my database every couple seconds?

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

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

发布评论

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

评论(1

誰ツ都不明白 2024-11-23 22:34:11

您需要使用 while 循环。 fgets 文档中有一些示例。

$h = fopen('php://stdin', 'r');

while ( ($str = fgets($h)) !== false )
{
  $sql = 'INSERT INTO ...';

  mysql_query($sql);
}

fclose($h);

文档中的评论之一建议使用 stream_get_line 而不是 fgets。如果您有兴趣,这里是直接链接: http://www .php.net/manual/en/function.fgets.php#86319

You need to use a while loop. There are some examples in the fgets documentation.

$h = fopen('php://stdin', 'r');

while ( ($str = fgets($h)) !== false )
{
  $sql = 'INSERT INTO ...';

  mysql_query($sql);
}

fclose($h);

One of the comments in the documentation suggests using stream_get_line instead of fgets. In case you're interested, here's the direct link: http://www.php.net/manual/en/function.fgets.php#86319.

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