无论如何,我让我的东西与下面的线一起工作,但我真的无法理解。
if (preg_match_all('/[^=]*=([^;@]*)/', shell_exec("/home/technoworld/Desktop/test/b '$test'"),$matches))
{
$x = (int) $matches[1][0]; //optionally cast to int
$y = (int) $matches[1][1];
$pcount= round((100*$x)/($x+$y),2);
$ncount= round((100*$y)/($x+$y),2);
}
b
是可执行文件,它给出的结果类似于x=10
和y=20
有人可以解释我里面的任何内容吗if()