XWare Поиск по информационным ресурсам МГУ English Russian
       
       Точная форма слов   О проекте   Сайты   Помощь
Поиск по:old.master.cmc.msu.ru   - Поискать по всем серверам
На этой странице приведены все страницы сервера old.master.cmc.msu.ru ,которые мы индексируем. Показаны документы 2861 - 2880 из 3519.

В начало ] Пред. | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | След.В конец ]

Упорядочить по: URL  |  дате изменения
2861. strtotime
... Next . 3.0.12 - 3.0.18 only, PHP 4 >= 4.0.0) strtotime -- Parse about any English textual datetime description into a UNIX timestamp . int strtotime ( string time [, int now]) . ... Described there is valid syntax for the time parameter. Example 1. strtotime() examples . ... Example 2. ... str = 'Not Good'; if (($timestamp = strtotime($str)) === -1) { echo "The string ($str) is bogus"; } else { echo "$str == ". date('l dS of F Y h:i:s A',$timestamp); } . ... time . ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.strtotime.html -- 5.3 Кб -- 03.02.2002
Похожие документы

2862. time
. PHP Manual . Prev . Next . (PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) time -- Return current UNIX timestamp . int time ( (void);) . Returns the current time measured in the number of seconds since the Unix Epoch (January 1 1970 00:00:00 GMT). See also date() . Prev . Home . Next . strftime . Up . strtotime
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.time.html -- 3.3 Кб -- 03.02.2002
Похожие документы

2863. Date and Time functions
... checkdate -- Validate a gregorian date/time . date -- Format a local time/date . getdate -- Get date/time information . gettimeofday -- Get current time . gmdate -- Format a GMT/CUT date/time . gmmktime -- Get UNIX timestamp for a GMT date . gmstrftime -- Format a GMT/CUT time/date according to locale settings . ... mktime -- Get UNIX timestamp for a date . strftime -- Format a local time/date according to locale settings . time -- Return current UNIX timestamp . ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/ref.datetime.html -- 4.4 Кб -- 03.02.2002
Похожие документы

2864. strftime
... PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) strftime -- Format a local time/date according to locale settings . ... m - month as a decimal number (range 01 to 12) . ... U - week number of the current year as a decimal number, starting with the first Sunday as the first day of the first week . V - The ISO 8601:1988 week number of the current year as a decimal number, range 01 to 53, where week 1 is the first week that has at least 4 days in the current year, and with Monday as the first day of the week. ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.strftime.html -- 9.2 Кб -- 03.02.2002
Похожие документы

2865. microtime
PHP Manual . ... Returns the string "msec sec" where sec is the current time measured in the number of seconds since the Unix Epoch (0:00:00 January 1, 1970 GMT), and msec is the microseconds part. ... function getmicrotime(){ list($usec, $sec) = explode(" ",microtime()); return ((float)$usec + (float)$sec); } $time_start = getmicrotime(); for ($i=0; $i < 1000; $i++){ //do nothing, 1000 times } $time_end = getmicrotime(); $time = $time_end - $time_start; echo "Did nothing in $time seconds"; . ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.microtime.html -- 4.3 Кб -- 03.02.2002
Похожие документы

2866. mktime
... PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) mktime -- Get UNIX timestamp for a date . int mktime ( int hour, int minute, int second, int month, int day, int year [, int is_dst]) . ... The last day of any given month can be expressed as the "0" day of the next month, not the -1 day. ... Last day of next month . lastday = mktime (0,0,0,3,0,2000); echo strftime ("Last day in Feb 2000 is: %d", $lastday); $lastday = mktime (0,0,0,4,-31,2000); echo strftime ("Last day in Feb 2000 is: %d", $lastday); . ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.mktime.html -- 6.5 Кб -- 03.02.2002
Похожие документы

2867. gmstrftime
PHP Manual . ... Next . 3.0.12 - 3.0.18 only, PHP 4 >= 4.0.0) gmstrftime -- Format a GMT/CUT time/date according to locale settings . string gmstrftime ( string format [, int timestamp]) . Behaves the same as strftime() except that the time returned is Greenwich Mean Time (GMT). ... Example 1. gmstrftime() example . setlocale ('LC_TIME', 'en_US'); echo strftime ("%b %d %Y %H:%M:%S", mktime (20,0,0,12,31,98))."\n"; echo gmstrftime ("%b %d %Y %H:%M:%S", mktime (20,0,0,12,31,98))."\n"; . ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.gmstrftime.html -- 4.1 Кб -- 03.02.2002
Похожие документы

2868. localtime
... PHP 4 >= 4.0.0) localtime -- Get the local time . array localtime ( [int timestamp [, bool is_associative]]) . The localtime() function returns an array identical to that of the structure returned by the C function call. The first argument to localtime() is the timestamp, if this is not given the current time is used. ... If the argument is set to 1 then localtime() is an associative array containing all the different elements of the structure returned by the C function call to localtime. ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.localtime.html -- 4.6 Кб -- 03.02.2002
Похожие документы

2869. gmdate
PHP Manual . ... PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) gmdate -- Format a GMT/CUT date/time . string gmdate ( string format [, int timestamp]) . Identical to the date() function except that the time returned is Greenwich Mean Time (GMT). For example, when run in Finland (GMT +0200), the first line below prints "Jan 01 1998 00:00:00", while the second prints "Dec 31 1997 22:00:00". ... echo date ("M d Y H:i:s", mktime (0,0,0,1,1,1998)); echo gmdate ("M d Y H:i:s", mktime (0,0,0,1,1,1998)); . ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.gmdate.html -- 4.2 Кб -- 03.02.2002
Похожие документы

2870. gmmktime
. PHP Manual . Prev . Next . (PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) gmmktime -- Get UNIX timestamp for a GMT date . int gmmktime ( int hour, int minute, int second, int month, int day, int year [, int is_dst]) . Identical to mktime() except the passed parameters represents a GMT date. Prev . Home . Next . gmdate . Up . gmstrftime
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.gmmktime.html -- 3.3 Кб -- 03.02.2002
Похожие документы

2871. getdate
... PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) getdate -- Get date/time information . array getdate ( [int timestamp]) . ... mday" - day of the month . wday" - day of the week, numeric : from 0 as Sunday up to 6 as Saturday . mon" - month, numeric . year" - year, numeric . yday" - day of the year, numeric; i.e. "299" . ... month" - month, textual, full; i.e. "January" . ... today = getdate(); $month = $today['month']; $mday = $today['mday']; $year = $today['year']; echo "$month $mday, $year"; . ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.getdate.html -- 4.6 Кб -- 03.02.2002
Похожие документы

2872. gettimeofday
. PHP Manual . Prev . Next . (3.0.7 - 3.0.18 only, PHP 4 >= 4.0.0) gettimeofday -- Get current time . array gettimeofday ( (void);) . This is an interface to gettimeofday(2). It returns an associative array containing the data returned from the system call. "sec" - seconds . "usec" - microseconds . "minuteswest" - minutes west of Greenwich . "dsttime" - type of dst correction . Prev . Home . Next . getdate . Up . gmdate
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.gettimeofday.html -- 3.5 Кб -- 03.02.2002
Похожие документы

2873. date
... PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) date -- Format a local time/date . string date ( string format [, int timestamp]) . ... The following characters are recognized in the format string: . ... d - day of the month, 2 digits with leading zeros; i.e. "01" to "31" . ... I (capital i) - "1" if Daylight Savings Time, "0" otherwise. j - day of the month without leading zeros; i.e. "1" to "31" . ... t - number of days in the given month; i.e. "28" to "31" . ... date ("l", mktime(0,0,0,7,1,2000)); . ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.date.html -- 11.5 Кб -- 03.02.2002
Похожие документы

2874. checkdate
PHP Manual . Prev . Next . PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) checkdate -- Validate a gregorian date/time . bool checkdate ( int month, int day, int year) . Returns TRUE if the date given is valid; otherwise returns FALSE . Checks the validity of the date formed by the arguments. A date is considered valid if: . year is between 1 and 32767 inclusive . month is between 1 and 12 inclusive . Day is within the allowed number of days for the given month . ... date ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.checkdate.html -- 4.0 Кб -- 03.02.2002
Похожие документы

2875. dba_replace
PHP Manual . Prev . Next . 3.0.8 - 3.0.18 only, PHP 4 >= 4.0.0) dba_replace -- Replace or insert entry . bool dba_replace ( string key, string value, int handle) . dba_replace() replaces or inserts the entry described with key and value into the database specified by handle . key is the key of the entry to be inserted. value is the value to be inserted. handle is a database handle returned by dba_open() . ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.dba-replace.html -- 4.4 Кб -- 03.02.2002
Похожие документы

2876. dba_sync
. PHP Manual . Prev . Next . (3.0.8 - 3.0.18 only, PHP 4 >= 4.0.0) dba_sync -- Synchronize database . bool dba_sync ( int handle) . dba_sync() synchronizes the database specified by handle . This will probably trigger a physical write to disk, if supported. handle is a database handle returned by dba_open() . dba_sync() returns TRUE or FALSE , if the synchronization succeeds or fails, respectively. See also: dba_optimize() . Prev . Home . Next . dba_replace . Up . Date and Time functions
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.dba-sync.html -- 3.9 Кб -- 03.02.2002
Похожие документы

2877. Database (dbm-style) abstraction layer functions
... These functions build the foundation for accessing Berkeley DB style databases. This is a general abstraction layer for several file-based databases. As such, functionality is limited to a common subset of features supported by modern databases such as Sleepycat Software's DB2 . ... When invoking the dba_open() or dba_popen() functions, one of the following handler names must be supplied as an argument. ... dbm . Dbm is the oldest (original) type of Berkeley DB style databases. ... db2 . ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/ref.dba.html -- 10.4 Кб -- 03.02.2002
Похожие документы

2878. dba_optimize
. PHP Manual . Prev . Next . (3.0.8 - 3.0.18 only, PHP 4 >= 4.0.0) dba_optimize -- Optimize database . bool dba_optimize ( int handle) . dba_optimize() optimizes the underlying database specified by handle . handle is a database handle returned by dba_open() . dba_optimize() returns TRUE or FALSE , if the optimization succeeds or fails, respectively. See also: dba_sync() . Prev . Home . Next . dba_open . Up . dba_replace
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.dba-optimize.html -- 3.8 Кб -- 03.02.2002
Похожие документы

2879. dba_open
... 3.0.8 - 3.0.18 only, PHP 4 >= 4.0.0) dba_open -- Open database . int dba_open ( string path, string mode, string handler [, ...]) . ... path is commonly a regular path in your filesystem. mode is "r" for read access, "w" for read/write access to an already existing database, "c" for read/write access and database creation if it doesn't currently exist, and "n" for create, truncate and read/write access. handler is the name of the handler which shall be used for accessing path . ... dba_popen . ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.dba-open.html -- 4.5 Кб -- 03.02.2002
Похожие документы

2880. dba_popen
... 3.0.8 - 3.0.18 only, PHP 4 >= 4.0.0) dba_popen -- Open database persistently . int dba_popen ( string path, string mode, string handler [, ...]) . ... path is commonly a regular path in your filesystem. mode is "r" for read access, "w" for read/write access to an already existing database, "c" for read/write access and database creation if it doesn't currently exist, and "n" for create, truncate and read/write access. handler is the name of the handler which shall be used for accessing path . ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.dba-popen.html -- 4.5 Кб -- 03.02.2002
Похожие документы

В начало ] Пред. | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | След.В конец ]

Rambler's Top100 RFBR Яндекс цитирования