Podstrony
- Strona startowa
- Mikser analogowy ALLEN&HEATH seria PA i CP. Instrukcja PL
- [eBooks.PL]Praca Magisterska Projekt serwisu informacyjnego WWW
- Terry Pratchett Discworld 23 PL Carpe Jugulum
- adobe.photoshop.7.pl.podręcznik.uzytkownika.[osloskop.net]
- Adobe.Photoshop.7.PL.podręcznik.uzytkownika.[emulek.net]
- Linux. .Mandrake.10.Podręcznik.Użytkownika.[eBook.PL] (3)
- Jordan Robert Oko swiata cz 2
- Lacy K. Ford Deliver Us from Evil, The Slave
- M. Heindel Astrologia (2)
- zanotowane.pl
- doc.pisz.pl
- pdf.pisz.pl
- patryk-enha.pev.pl
[ Pobierz całość w formacie PDF ]
.encoding jest stroną kodową klienta i może przyjmować następujace wartości: SQL_ASCII,EUC_JP, EUC_CN, EUC_KR, EUC_TW, UNICODE, MULE_INTERNAL, LATINX (X=1.9),KOI8, WIN, ALT, SJIS, BIG5, WIN1250.Dostępne strony kodowe zależą od PostgreSQL-a i wersjilibpq.Sprawdz w podręczniku PostgreSQL jakie są dostępne strony kodowe dla twojegoPostgreSQL-a.Notatka: Ta funkcja wymaga PHP-4.3 lub nowszego i PostgreSQL-7.0 lub nowszego.Dostępne strony kodowe zależą od wersji PostgreSQL.Ta funkcja była poprzednio nazwana pg_setclientencoding().Zobacz także pg_client_encoding().pg_trace (PHP 4 >= 4.1)Uruchamia śledzenie połączeń z PostgreSQLbool pg_trace ( string pathname [, string mode [, resource connection]]) \linebreakpg_trace() uruchamia śledzenie połączeń między klientem a serwerem PostgreSQL-a.Wynikśledzenia jest zapisywany do pliku wskazanego przezpathname.Aby w pełni zrozumieć wynikiśledzenia potrzebna jest wiedza o szczegółach wewnętrznej komunikacji PostgreSQL-a.Nieobeznani z tymi szczegółami, mogą jednak wykorzystać tą funkcję do śledzenia błędów wzapytaniach wysyłanych do serwera.Przykładowo, wykonując grep ^To backend trace.logmożna zobaczyć zapytania które były wysłane do serwera.Więcej szczegółow można dowiedzieć sięz podręcznika PostgreSQL-a.Parametrypathnameimodesą takie same jak dla funkcji fopen() (domyślną wartościąmodejest w ),connectionwskazuje identyfikator połączenia które ma być śledzone.Domyślnieprzyjmowane jest ostatnio otwarte.Funkcja zwracaTRUEjeślipathnamezostał pomyslnie otwarty do logowania lubFALSEwprzeciwnym wypadku.Zobacz także fopen() i pg_untrace().pg_tty (PHP 3, PHP 4 )Zwraca nazwę konsoli tty związanej z połączeniemstring pg_tty ( resource connection) \linebreak1369PostgreSQLpg_tty() zwraca nazwę konsoli tty którą serwer PostgreSQL wykorzystuje do debugowaniapołączenia wskazanego przezconnection.pg_untrace (PHP 4 >= 4.1)Wyłącza śledzenie połączeń PostgreSQL-abool pg_untrace ( [resource connection]) \linebreakWyłącza śledzenie połączeń uruchomione przez pg_trace().connectionwskazuje połączeniektóre było śledzone, domyślnie przyjmowane jest ostatnio otwarte.Zawsze zwracaTRUE.Zobacz także pg_trace().pg_update (PHP 4 CVS only)Aktualizuje tabelę.long pg_update ( resource connection, string table_name, array condition, array data [, int options]) \line-breakpg_update() aktualizuje wiersze spełniające warunki zawarte wconditionużywająca danych zdata.Jeśli jest użyty parametroption, jest on przekazywany do wywołania pg_convert() zassoc_array.Przykład 1.pg_update AA , field2 => BB );// To jest bezpieczne, gdyz $_POST jest konwertowane automatycznie$res = pg_update($db, post_log , $_POST, $data);if ($res) {echo "Dane zostały zaktualizowane: $res\n";}else {echo "Użytkownik wprowadził błędne dane\n";}?>Notatka: Funkcja eksperymentalna.Zobacz także pg_convert()1370LXXXI.Process Control FunctionsProcess Control support in PHP implements the Unix style of process creation, program execution,signal handling and process termination.Process Control should not be enabled within a webserverenvironment and unexpected results may happen if any Process Control functions are used within awebserver environment.This documentation is intended to explain the general usage of each of the Process Control functions.For detailed information about Unix process control you are encouraged to consult your systemsdocumentation including fork(2), waitpid(2) and signal(2) or a comprehensive reference such asAdvanced Programming in the UNIX Environment by W.Richard Stevens (Addison-Wesley).Process Control support in PHP is not enabled by default.You will need to use the --enable-pcntlconfiguration option when compiling PHP to enable Process Control support.Notatka: Currently, this module will not function on non-Unix platforms (Windows).The following list of signals are supported by the Process Control functions.Please see your systemssignal(7) man page for details of the default behavior of these signals.Tabela 1.Supported SignalsSIGFPE SIGCONT SIGKILLSIGSTOP SIGUSR1 SIGTSTPSIGHUP SIGUSR2 SIGTTINSIGINT SIGSEGV SIGTTOUSIGQUIT SIGPIPE SIGURGSIGILL SIGALRM SIGXCPUSIGTRAP SIGTERM SIGXFSZSIGABRT SIGSTKFLT SIGVTALRMSIGIOT SIGCHLD SIGPROFSIGBUS SIGCLD SIGWINCHSIGPOLL SIGIO SIGPWRSIGSYSProcess Control ExampleThis example forks off a daemon process with a signal handler.Przykład 1.Process Control Example1372PCNTLpcntl_exec (PHP 4 >= 4.2.0)Executes specified program in current process spacebool pcntl_exec ( string path [, array args [, array envs]]) \linebreakOstrzeżenieTa funkcja jest obecnie nieudokumentowana, dostępna jest jedynie lista jejargumentów.pcntl_fork (PHP 4 >= 4.1.0)Forks the currently running processint pcntl_fork ( void) \linebreakThe pcntl_fork() function creates a child process that differs from the parent process only in it s PIDand PPID.Please see your system s fork(2) man page for specific details as to how fork works onyour system.On success, the PID of the child process is returned in the parent s thread of execution, and a 0 isreturned in the child s thread of execution.On failure, a -1 will be returned in the parent s context, nochild process will be created, and a PHP error is raised.Przykład 1.pcntl_fork() ExampleSee also pcntl_waitpid() and pcntl_signal().1373PCNTLpcntl_signal (PHP 4 >= 4.1.0)Installs a signal handlerbool pcntl_signal ( int signo, mixed handle) \linebreakThe pcntl_signal() function installs a new signal handler for the signal indicated bysigno.Thesignal handler is set tohandlerwhich may be the name of a user created function, or either of thetwo global constants SIG_IGN or SIG_DFL.pcntl_signal() returnsTRUEon success orFALSEon failure.Przykład 1.pcntl_signal() ExampleSee also pcntl_fork() and pcntl_waitpid().1374PCNTLpcntl_waitpid (PHP 4 >= 4.1.0)Waits on or returns the status of a forked childint pcntl_waitpid ( int pid, int status, int options) \linebreakThe pcntl_waitpid() function suspends execution of the current process until a child as specified bythepidargument has exited, or until a signal is delivered whose action is to terminate the currentprocess or to call a signal handling function.If a child as requested bypidhas already exited by thetime of the call (a so-called "zombie" process), the function returns immediately.Any systemresources used by the child are freed.Please see your system s waitpid(2) man page for specificdetails as to how waitpid works on your system.pcntl_waitpid() returns the process ID of the child which exited, -1 on error or zero if WNOHANGwas used and no child was availableThe value ofpidcan be one of the following:Tabela 1.possible values forpid0 wait for the child whose process ID is equal tothe value ofpid.pcntl_waitpid() will store status information in thestatusparameter which can be evaluatedusing the following functions: pcntl_wifexited(), pcntl_wifstopped(), pcntl_wifsignaled(),pcntl_wexitstatus(), pcntl_wtermsig() and pcntl_wstopsig().The value ofoptionsis the value of zero or more of the following two global constantsOR edtogether:Tabela 2.possible values foroptionsWNOHANG return immediately if no child has exited.WUNTRACED return for children which are stopped, and whosestatus has not been reported.See also pcntl_fork(), pcntl_signal(), pcntl_wifexited(), pcntl_wifstopped(), pcntl_wifsignaled(),pcntl_wexitstatus(), pcntl_wtermsig() and pcntl_wstopsig().pcntl_wexitstatus (PHP 4 >= 4.1.0)Returns the return code of a terminated child1375PCNTLint pcntl_wexitstatus ( int status) \linebreakReturns the return code of a terminated child.This function is only useful if pcntl_wifexited()returnedTRUE
[ Pobierz całość w formacie PDF ]