Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我环顾四周,了解到我可以使用以下内容来获取特定 PID 的 CPU 和内存数据:
echo shell_exec('ps -p 22583 -o "pcpu,pmem" | tail -n +2');
我打字没有| tail -n +2我得到以下信息:
tail -n +2
%CPU %MEM
由于某种原因,它不会返回实际值..
有人可以帮我解决这个问题吗?
谢谢。
你试过辅助结构吗?
ps aux | grep 'process'