Поиск по:old.hcs.cmc.msu.ru -
Поискать по всем серверам
На этой странице приведены все страницы сервера old.hcs.cmc.msu.ru ,которые мы индексируем. Показаны документы 901 - 920 из 3520.
Упорядочить по:
URL
|
дате изменения
901. shmop_size
PHP Manual . ... PHP 4 >= 4.0.4) shmop_size -- Get size of shared memory block . int shmop_size ( int shmid) . shmop_size() is used to get the size, in bytes of the shared memory block. shmop_size() takes the shmid, which is the shared memory block identifier created by shmop_open() , the function will return and int, which represents the number of bytes the shared memory block occupies. ... This example will put the size of shared memory block identified by $shm_id into $shm_size . ...
[
Сохраненная копия
]
Ссылки http://old.hcs.cmc.msu.ru/php/function.shmop-size.html -- 4.1 Кб -- 03.02.2002
Похожие документы
Похожие документы
902. shmop_delete
PHP Manual . Prev . Next . PHP 4 >= 4.0.4) shmop_delete -- Delete shared memory block . int shmop_delete ( int shmid) . shmop_delete() is used to delete a shared memory block. shmop_delete() takes the shmid, which is the shared memory block identifier created by shmop_open() . ... Example 1. Deleting shared memory block . php shmop_delete($shm_id); ?> This example will delete shared memory block identified by $shm_id . ...
[
Сохраненная копия
]
Ссылки http://old.hcs.cmc.msu.ru/php/function.shmop-delete.html -- 4.0 Кб -- 03.02.2002
Похожие документы
Похожие документы
903. shmop_write
... PHP 4 >= 4.0.4) shmop_write -- Write data into shared memory block . int shmop_write ( int shmid, string data, int offset) . shmop_write() will write a string into shared memory block. shmop_write() takes 3 parameters: shmid, which is the shared memory block identifier created by shmop_open() , data, a string that you want to write into shared memory block and offset, which specifies where to start writing data inside the shared memory segment. ... Writing to shared memory block . ...
[
Сохраненная копия
]
Ссылки http://old.hcs.cmc.msu.ru/php/function.shmop-write.html -- 4.3 Кб -- 03.02.2002
Похожие документы
Похожие документы
904. shmop_read
PHP Manual . ... PHP 4 >= 4.0.4) shmop_read -- Read data from shared memory block . string shmop_read ( int shmid, int start, int count) . shmop_read() will read a string from shared memory block. shmop_read() takes 3 parameters: shmid, which is the shared memory block identifier created by shmop_open() , offset from which to start reading and count on the number of bytes to read. ... This example will read 50 bytes from shared memory block and place the data inside $shm_data . ...
[
Сохраненная копия
]
Ссылки http://old.hcs.cmc.msu.ru/php/function.shmop-read.html -- 4.1 Кб -- 03.02.2002
Похожие документы
Похожие документы
905. Session handling functions
... The restored session variables will only be available in the array $HTTP_SESSION_VARS . ... Registering a variable with $_SESSION. <?php // Use $HTTP_SESSION_VARS with PHP 4.0.6 or less if (!isset($_SESSION['count'])) { $_SESSION['count'] = 0; } else { $_SESSION['count']++; ?> ... Since PHP must know which global variables are registered as session variables, users must register variables with session_register() function while $HTTP_SESSION_VARS / $_SESSION does not need to use session_register(). ...
[
Сохраненная копия
]
Ссылки http://old.hcs.cmc.msu.ru/php/ref.session.html -- 21.5 Кб -- 03.02.2002
Похожие документы
Похожие документы
906. shmop_open
... PHP 4 >= 4.0.4) shmop_open -- Create or open shared memory block . int shmop_open ( int key, string flags, int mode, int size) . ... a" for access (sets SHM_RDONLY for shmat) use this flag when you need to open an existing shared memory segment for read only . c" for create (sets IPC_CREATE) use this flag when you need to create a new shared memory segment or if a segment with the same key exists, try to open it for read and write . ... Create a new shared memory block . ...
[
Сохраненная копия
]
Ссылки http://old.hcs.cmc.msu.ru/php/function.shmop-open.html -- 5.5 Кб -- 03.02.2002
Похожие документы
Похожие документы
907. session_cache_expire
. PHP Manual . Prev . Next . (PHP 4 CVS only) session_cache_expire -- Return current cache expire . int session_cache_expire ( [int new_cache_expire]) . session_cache_expire() returns current cache expire. If new_cache_expire is given, the current cache expire is replaced with new_cache_expire . Prev . Home . Next . session_cache_limiter . Up . session_write_close
[
Сохраненная копия
]
Ссылки http://old.hcs.cmc.msu.ru/php/function.session-cache-expire.html -- 3.5 Кб -- 03.02.2002
Похожие документы
Похожие документы
908. session_write_close
PHP Manual . Prev . ... PHP 4 >= 4.0.4) session_write_close -- Write session data and end session . ... End the current session and store session data. Session data is usually stored after your script terminated without the need to call session_write_close() , but as session data is locked to prevent concurrent writes only one script may operate on a session at any time. When using framesets together with sessions you will experience the frames loading one by one due to this locking. ...
[
Сохраненная копия
]
Ссылки http://old.hcs.cmc.msu.ru/php/function.session-write-close.html -- 3.8 Кб -- 03.02.2002
Похожие документы
Похожие документы
909. session_cache_limiter
... PHP 4 >= 4.0.3) session_cache_limiter -- Get and/or set the current cache limiter . string session_cache_limiter ( [string cache_limiter]) . session_cache_limiter() returns the name of the current cache limiter. If cache_limiter is specified, the name of the current cache limiter is changed to the new value. ... php # set the cache limiter to 'private' session_cache_limiter('private'); $cache_limiter = session_cache_limiter(); echo "The cache limiter is now set to $cache_limiter<p>"; ?> ...
[
Сохраненная копия
]
Ссылки http://old.hcs.cmc.msu.ru/php/function.session-cache-limiter.html -- 5.5 Кб -- 03.02.2002
Похожие документы
Похожие документы
910. session_set_save_handler
PHP Manual . ... PHP 4 >= 4.0.0) session_set_save_handler -- Sets user-level session storage functions . ... php function open ($save_path, $ session _name) { global $ sess_save_path , $ sess_session_name ; $ sess_save_path = $save_path; $ sess_session_name = $ session _name; return (true); } function close() { return (true); } function read ($id) { global $ sess_save_path , $ sess_session_name ; $ sess_file = $ sess_save_path /sess_$id ; if ($fp = @fopen($ ... session_encode . ...
[
Сохраненная копия
]
Ссылки http://old.hcs.cmc.msu.ru/php/function.session-set-save-handler.html -- 6.7 Кб -- 03.02.2002
Похожие документы
Похожие документы
911. session_encode
. PHP Manual . Prev . Next . (PHP 4 >= 4.0.0) session_encode -- Encodes the current session data as a string . string session_encode ( (void);) . session_encode() returns a string with the contents of the current session encoded within. Prev . Home . Next . session_decode . Up . session_set_save_handler
[
Сохраненная копия
]
Ссылки http://old.hcs.cmc.msu.ru/php/function.session-encode.html -- 3.4 Кб -- 03.02.2002
Похожие документы
Похожие документы
912. session_set_cookie_params
. PHP Manual . Prev . Next . (PHP 4 >= 4.0.0) session_set_cookie_params -- Set the session cookie parameters . void session_set_cookie_params ( int lifetime [, string path [, string domain]]) . Set cookie parameters defined in the php.ini file. The effect of this function only lasts for the duration of the script. Prev . Home . Next . session_get_cookie_params . Up . session_decode
[
Сохраненная копия
]
Ссылки http://old.hcs.cmc.msu.ru/php/function.session-set-cookie-params.html -- 3.5 Кб -- 03.02.2002
Похожие документы
Похожие документы
913. session_decode
. PHP Manual . Prev . Next . (PHP 4 >= 4.0.0) session_decode -- Decodes session data from a string . bool session_decode ( string data) . session_decode() decodes the session data in data , setting variables stored in the session. Prev . Home . Next . session_set_cookie_params . Up . session_encode
[
Сохраненная копия
]
Ссылки http://old.hcs.cmc.msu.ru/php/function.session-decode.html -- 3.4 Кб -- 03.02.2002
Похожие документы
Похожие документы
914. session_is_registered
PHP Manual . Prev . Next . PHP 4 >= 4.0.0) session_is_registered -- Find out if a variable is registered in a session . bool session_is_registered ( string name) . ... Note: If $_SESSION (or $HTTP_SESSION_VARS for PHP 4.0.6 or less) is used, use isset() to check a variable is registered in $_SESSION . ... If you are using $HTTP_SESSION_VARS / $_SESSION , do not use session_register() , session_is_registered() and session_unregister() . ... session_unset . ... session_get_cookie_params ...
[
Сохраненная копия
]
Ссылки http://old.hcs.cmc.msu.ru/php/function.session-is-registered.html -- 4.5 Кб -- 03.02.2002
Похожие документы
Похожие документы
915. session_get_cookie_params
PHP Manual . Prev . ... PHP 4 >= 4.0.0) session_get_cookie_params -- Get the session cookie parameters . array session_get_cookie_params ( (void);) . The session_get_cookie_params() function returns an array with the current session cookie information, the array contains the following items: . lifetime" - The lifetime of the cookie. "path" - The path where information is stored. "domain" - The domain of the cookie. "secure" - The cookie should only be sent over secure connections. ...
[
Сохраненная копия
]
Ссылки http://old.hcs.cmc.msu.ru/php/function.session-get-cookie-params.html -- 3.9 Кб -- 03.02.2002
Похожие документы
Похожие документы
916. session_unregister
PHP Manual . ... PHP 4 >= 4.0.0) session_unregister -- Unregister a variable from the current session . ... session_unregister() unregisters (forgets) the global variable named name from the current session. ... Note: If $_SESSION (or $HTTP_SESSION_VARS for PHP 4.0.6 or less) is used, use unset() to unregister a session variable. Caution . This function doesn't unset the corresponding global variable for name , it only prevents the variable from being saved as part of the session. ...
[
Сохраненная копия
]
Ссылки http://old.hcs.cmc.msu.ru/php/function.session-unregister.html -- 5.0 Кб -- 03.02.2002
Похожие документы
Похожие документы
917. session_unset
. PHP Manual . Prev . Next . (PHP 4 >= 4.0.0) session_unset -- Free all session variables . void session_unset ( (void);) . The session_unset() function free's all session variables currently registered. Note: If $_SESSION (or $HTTP_SESSION_VARS for PHP 4.0.6 or less) is used, use unset() to unregister session variable. i.e. unset($_SESSION); . Prev . Home . Next . session_unregister . Up . session_is_registered
[
Сохраненная копия
]
Ссылки http://old.hcs.cmc.msu.ru/php/function.session-unset.html -- 3.7 Кб -- 03.02.2002
Похожие документы
Похожие документы
918. session_register
PHP Manual . ... PHP 4 >= 4.0.0) session_register -- Register one or more variables with the current session . bool session_register ( mixed name [, mixed ...]) . session_register() accepts a variable number of arguments, any of which can be either a string holding the name of a variable or an array consisting of variable names or other arrays. For each name, session_register() registers the global variable with that name in the current session. ... This registers a global variable. ...
[
Сохраненная копия
]
Ссылки http://old.hcs.cmc.msu.ru/php/function.session-register.html -- 6.9 Кб -- 03.02.2002
Похожие документы
Похожие документы
919. session_id
. PHP Manual . Prev . Next . (PHP 4 >= 4.0.0) session_id -- Get and/or set the current session id . string session_id ( [string id]) . session_id() returns the session id for the current session. If id is specified, it will replace the current session id. The constant SID can also be used to retrieve the current name and session id as a string suitable for adding to URLs. Prev . Home . Next . session_save_path . Up . session_register
[
Сохраненная копия
]
Ссылки http://old.hcs.cmc.msu.ru/php/function.session-id.html -- 3.6 Кб -- 03.02.2002
Похожие документы
Похожие документы
920. session_save_path
PHP Manual . Prev . Next . PHP 4 >= 4.0.0) session_save_path -- Get and/or set the current session save path . string session_save_path ( [string path]) . session_save_path() returns the path of the current directory used to save session data. If path is specified, the path to which data is saved will be changed. Note: On some operating systems, you may want to specify a path on a filesystem that handles lots of small files efficiently. ... session_module_name . ...
[
Сохраненная копия
]
Ссылки http://old.hcs.cmc.msu.ru/php/function.session-save-path.html -- 3.8 Кб -- 03.02.2002
Похожие документы
Похожие документы