|
|
PHP (angielski akronim rekurencyjny, którego rozwinięcie to PHP Hypertext Preprocessor), pierwotnie nazwany Personal
Home Page - skryptowy język programowania, służący przede wszystkim do tworzenia dynamicznych stron WWW i wykonywany w
tym przypadku po stronie serwera, z możliwością zagnieżdżania w HTML (bądź XHTML). PHP jest podobny w założeniach do
dużo starszego mechanizmu SSI (Server Side Includes), jednak jest w stosunku do SSI nieporównanie bardziej rozbudowany.
Udostępniany jest na zasadach licencji open-source. Jego składnia bazuje na językach C, Java i Perl.
SQL (ang. Structured Query Language) to strukturalny język zapytań używany do tworzenia, modyfikowania baz danych oraz
do umieszczania i pobierania danych z baz danych.
Język SQL jest językiem deklaratywnym. Decyzję o sposobie przechowywania i pobrania danych pozostawia się systemowi
zarządzania bazą danych DBMS.
Jest to język programowania opracowany w latach siedemdziesiątych w firmie IBM. Stał się on standardem w komunikacji z
serwerami relacyjnych baz danych. Wiele współczesnych systemów relacyjnych baz danych używa do komunikacji z
użytkownikiem SQL, dlatego mówi się, że korzystanie z relacyjnych baz danych, to korzystanie z SQL-a.
Apache jest otwartym serwerem HTTP dostępnym dla wielu systemów operacyjnych (m.in. UNIX, GNU/Linux, BSD,
Microsoft Windows). Po angielsku słowo Apache wymawia się epaczi, co brzmi tak samo jak a patchy (server), co było
określeniem tego serwera we wczesnym stadium jego rozwoju w 1995 roku, kiedy był on głównie zbiorem poprawek (patch)
nałożonych na serwer HTTP o nazwie NCSA.
Apache jest najszerzej stosowanym serwerem HTTP w Internecie. W maju 2003 jego udział wśród serwerów wynosił 62%. W
połączeniu z interpreterem języka skryptowego PHP i bazą danych MySQL, Apache stanowi jedno z najczęściej spotykanych
środowisk w firmach oferujących miejsce na serwerach sieciowych.
|
msg_stat_queue
(PHP 4 >= 4.3.0, PHP 5) msg_stat_queue -- Returns
information from the message queue data structure
Descriptionarray msg_stat_queue ( resource queue )
msg_stat_queue() returns the message
queue meta data for the message queue specified by the
queue. This is useful, for
example, to determine which process sent the message that was
just received.
The return value is an array whose keys and values have the
following meanings:
Tabela 1. Array structure for msg_stat_queue
| msg_perm.uid |
The uid of the owner of the queue. |
| msg_perm.gid |
The gid of the owner of the queue. |
| msg_perm.mode |
The file access mode of the queue. |
| msg_stime |
The time that the last message was sent to the
queue. |
| msg_rtime |
The time that the last message was received from
the queue. |
| msg_ctime |
The time that the queue was last changed. |
| msg_qnum |
The number of messages waiting to be read from the
queue. |
| msg_qbytes |
The number of bytes of space currently available in
the queue to hold sent messages until they are
received. |
| msg_lspid |
The pid of the process that sent the last message
to the queue. |
| msg_lrpid |
The pid of the process that received the last
message from the queue. |
See also msg_remove_queue(), msg_receive(), msg_get_queue() and msg_set_queue().
|