我有此终端命令,您可以在其中键入pcsc_scan并连续扫描数据。它停止的唯一方法是按Ctrl + C。我需要修改什么代码才能使其停止,以便可以将数据写入$ output以便显示。
<?php
// Use ls command to shell_exec
// function
$output = shell_exec('pcsc_scan');
// Display the list of all file
// and directory
echo "<pre>$output</pre>";
?>