En son web geliştirme öğreticiler
 

PHP pclose() Function


<Komple PHP Dosya Sistemi Referans

Tanımı ve Kullanımı

pclose() işlevi tarafından açılan bir boru kapatır popen() .

Bu işlev aksi takdirde FALSE döndürür.

Sözdizimi

pclose(pipe)

Parametre Açıklama
pipe Gereklidir. Tarafından açılan boru belirtir popen()

Örnek

<?php
$file = popen("/bin/ls","r");
//some code to be executed
pclose($file);
?>

<Komple PHP Dosya Sistemi Referans