Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:13914 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 87834 invoked by uid 1010); 21 Nov 2004 16:02:52 -0000 Delivered-To: ezmlm-scan-internals@lists.php.net Delivered-To: ezmlm-internals@lists.php.net Received: (qmail 87790 invoked from network); 21 Nov 2004 16:02:51 -0000 Received: from unknown (HELO rproxy.gmail.com) (64.233.170.204) by pb1.pair.com with SMTP; 21 Nov 2004 16:02:51 -0000 Received: by rproxy.gmail.com with SMTP id q1so153165rnf for ; Sun, 21 Nov 2004 08:02:51 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:mime-version:content-type:content-transfer-encoding; b=Z8602rbTI4SDqtx6GOWhWx6HmKcmR2mWezwEgbCpzi3TAYUKIqrl3gHCwYU2N5KhO5v3wQ1u4Qh7J572Z1bTryIX1RRrQYEWcFYXmegnbP1F5q4C/GvqsXdkYO7sKDeS+ZiLRrs37amR2d7Y9ceZfSsa6N8tLHcLJXdsiyCfn7g= Received: by 10.39.3.57 with SMTP id f57mr473250rni; Sun, 21 Nov 2004 08:02:51 -0800 (PST) Received: by 10.38.70.1 with HTTP; Sun, 21 Nov 2004 08:02:51 -0800 (PST) Message-ID: Date: Sun, 21 Nov 2004 18:02:51 +0200 Reply-To: "ilya77@gmail.com" To: internals@lists.php.net Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: creating detached processes in PHP From: ilya77@gmail.com ("ilya77@gmail.com") PHP has system() and shell_execute(), but how about spawn() ? Currently we can only create an asynchronous process only with proc_open() or popen(), and then I have to track the pipe(s). It would be great to "exec and let go" the process.