П О Р Т А Л                            
С Е Т Е В Ы Х                          
П Р О Е К Т О В                        
  
Поиск по сайту:
                                                 
Главная

О проекте

Web-мастеру
     HTML & JavaScript
     SSI
     Perl
     PHP
     XML & XSLT
     Unix Shell

MySQL

Безопасность

Хостинг

Другое








Самое читаемое:

Учебник PHP - "Для Чайника".
Просмотров 4410 раз(а).

Иллюстрированный самоучитель по созданию сайтов.
Просмотров 7002 раз(а).

Учебник HTML.
Просмотров 3904 раз(а).

Руководство по PHP5.
Просмотров 297 раз(а).

Хостинг через призму DNS.
Просмотров 5138 раз(а).

Подборка текстов стандартных документов.
Просмотров 56474 раз(а).

Учебник PHP - Самоучитель
Просмотров 3947 раз(а).

Документация на MySQL (учебник & справочное руководство)
Просмотров 9227 раз(а).

Внешние атаки...
Просмотров 4892 раз(а).

Учебник PHP.
Просмотров 3332 раз(а).

SSI в примерах.
Просмотров 333 раз(а).



 
 
| Добавить в избранное | Сделать стартовой | Помощь





Руководство по PHP
Пред. След.

proc_get_status

(PHP 5)

proc_get_status -- Get information about a process opened by proc_open()

Описание

array proc_get_status ( resource process )

proc_get_status() fetches data about a process opened using proc_open().

Список параметров

process

The proc_open() resource that will be evaluated.

Возвращаемые значения

An array of collected information on success, and FALSE on failure. The returned array contains the following elements:

elementtypedescription
commandstring The command string that was passed to proc_open()
pidintprocess id
runningbool TRUE if the process is still running, FALSE if it has terminated
signaledbool TRUE if the child process has been terminated by an uncaught signal. Always set to FALSE on Windows.
stoppedbool TRUE if the child process has been stopped by a signal. Always set to FALSE on Windows.
exitcodeint the exit code returned by the process (which is only meaningful if running is FALSE)
termsigint the number of the signal that caused the child process to terminate its execution (only meaningful if signaled is TRUE)
stopsigint the number of the signal that caused the child process to stop its execution (only meaningful if stopped is TRUE)

Смотрите также

proc_open()



Если Вы не нашли что искали, то рекомендую воспользоваться поиском по сайту:
 





Copyright © 2005-2016 Project.Net.Ru