PHP pclose() 函数
PHP 教程
· 2019-01-25 13:44:39
定义和用法
pclose() 函数关闭由 popen() 打开的进程。
如果失败,该函数返回 FALSE。
语法
pclose(pipe)
| 参数 | 描述 |
|---|---|
| pipe | 必需。规定由 popen() 打开的进程。 |
实例
<?php
$file = popen("/bin/ls","r");
//some code to be executed
pclose($file);
?>
点击查看所有 PHP 教程 文章: https://codercto.com/courses/l/5.html
The Haskell School of Music
Paul Hudak、Donya Quick / Cambridge University Press / 2018-10-4 / GBP 42.99
This book teaches functional programming through creative applications in music and sound synthesis. Readers will learn the Haskell programming language and explore numerous ways to create music and d......一起来看看 《The Haskell School of Music》 这本书的介绍吧!