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

В начало ] Пред. | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | След.В конец ]

Упорядочить по: URL  |  дате изменения
2401. ImageFilledArc
PHP Manual . ... PHP 4 >= 4.0.6) ImageFilledArc -- Draw a partial ellipse and fill it . int imagefilledarc ( int im, int cx, int cy, int w, int h, int s, int e, int col, int style) . ImageFilledArc() draws a partial ellipse centered at cx , cy (top left is 0, 0) in the image represented by im . ... IMG_ARC_EDGED IMG_ARC_PIE and IMG_ARC_CHORD are mutually exclusive; IMG_ARC_CHORD just connects the starting and ending angles with a straight line, while IMG_ARC_PIE produces a rounded edge. ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.imagefilledarc.html -- 4.9 Кб -- 03.02.2002
Похожие документы

2402. Image2WBMP
PHP Manual . ... Next . PHP 4 >= 4.0.5) Image2WBMP -- Output image to browser or file . int image2WBMP ( int im [, string filename [, int threshold]]) . Image2WBMP() creates the WBMP file in filename from the image im . ... The filename argument is optional, and if left off, the raw image stream will be output directly. By sending an image/vnd.wap.wbmp content-type using header() , you can create a PHP script that outputs WBMP images directly. ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.image2wbmp.html -- 4.1 Кб -- 03.02.2002
Похожие документы

2403. ImageAlphaBlending
... PHP 4 >= 4.0.6) ImageAlphaBlending -- Set the blending mode for an image . ... ImageAlphaBlending() allows for two different modes of drawing on truecolor images. In blending mode, the alpha channel component of the color supplied to all drawing function, such as ImageSetPixel() determines how much of the underlying color should be allowed to shine through. ... In non-blending mode, the drawing color is copied literally with its alpha channel information, replacing the destination pixel. ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.imagealphablending.html -- 4.2 Кб -- 03.02.2002
Похожие документы

2404. GetImageSize
... PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) GetImageSize -- Get the size of an image . ... The GetImageSize() function will determine the size of any GIF , JPG , PNG , SWF , PSD or BMP image file and return the dimensions along with the file type and a height/width text string to be used inside a normal HTML IMG tag. ... php $size = GetImageSize ("img/flag.jpg"); ?> ... php $size = GetImageSize ("testimg.jpg",&$info); if (isset ($info["APP13"])) { $iptc = iptcparse ($info["APP13"]); var_dump ($iptc); } ?> ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.getimagesize.html -- 7.0 Кб -- 03.02.2002
Похожие документы

2405. ob_iconv_handler
PHP Manual . Prev . Next . PHP 4 >= 4.0.5) ob_iconv_handler -- Convert character encoding as output buffer handler . array ob_iconv_handler ( string contents, int status) . It converts the string encoded in internal_encoding to output_encoding . internal_encoding and output_encoding should be defined by iconv_set_encoding() or in configuration file. Example 1. ob_iconv_handler() example: . ob_start("ob_iconv_handler"); // start output buffering . ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.ob-iconv-handler.html -- 4.3 Кб -- 03.02.2002
Похожие документы

2406. iconv functions
... This module contains an interface to the iconv library functions. ... In order to do so, you must have iconv() function in standard C library or libiconv installed on your system. libiconv library is available from http://www.gnu.org/software/libiconv/ . iconv library function converts files between various encoded character sets. ... iconv_get_encoding -- Get current setting for character encoding conversion . iconv_set_encoding -- Set current setting for character encoding conversion . ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/ref.iconv.html -- 4.4 Кб -- 03.02.2002
Похожие документы

2407. iconv_set_encoding
PHP Manual . Prev . Next . PHP 4 >= 4.0.5) iconv_set_encoding -- Set current setting for character encoding conversion . array iconv_set_encoding ( string type, string charset) . It changes the value of type to charset and returns TRUE in success or FALSE in failure. Example 1. iconv_set_encoding() example: . iconv_set_encoding("internal_encoding", "UTF-8"); iconv_set_encoding("output_encoding", "ISO-8859-1"); . See also: iconv_get_encoding() and ob_iconv_handler() . ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.iconv-set-encoding.html -- 4.2 Кб -- 03.02.2002
Похожие документы

2408. iconv_get_encoding
. PHP Manual . Prev . Next . (PHP 4 >= 4.0.5) iconv_get_encoding -- Get current setting for character encoding conversion . array iconv_get_encoding ( [string type]) . It returns the current settings of ob_iconv_handler() as array or FALSE in failure. See also: iconv_set_encoding() and ob_iconv_handler() . Prev . Home . Next . iconv . Up . iconv_set_encoding
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.iconv-get-encoding.html -- 3.6 Кб -- 03.02.2002
Похожие документы

2409. iconv
. PHP Manual . Prev . Next . (PHP 4 >= 4.0.5) iconv -- Convert string to requested character encoding . string iconv ( string in_charset, string out_charset, string str) . It converts the string string encoded in in_charset to the string encoded in out_charset . It returns the converted string or FALSE , if it fails. Example 1. iconv() example: . echo iconv("ISO-8859-1","UTF-8","This is test."); . Prev . Home . Next . iconv functions . Up . iconv_get_encoding
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.iconv.html -- 3.9 Кб -- 03.02.2002
Похожие документы

2410. icap_reopen
. PHP Manual . Prev . Next . (PHP 4 >= 4.0.0) icap_reopen -- Reopen ICAP stream to new calendar . int icap_reopen ( int stream_id, string calendar [, int options]) . Warning . This function is currently not documented, only the argument list is available. Prev . Home . Next . icap_delete_calendar . Up . iconv functions
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.icap-reopen.html -- 3.5 Кб -- 03.02.2002
Похожие документы

2411. ICAP Functions [deprecated]
PHP Manual . ... To get these functions to work, you have to compile PHP with --with-icap . ... If you want to use calendar capabilities in php, use mcal instead. ... icap_close -- Close an ICAP stream . icap_fetch_event -- Fetches an event from the calendar stream/ . ... icap_store_event -- Store an event into an ICAP calendar . icap_delete_event -- Delete an event from an ICAP calendar . ... icap_list_alarms -- Return a list of events that has an alarm triggered at the given datetime . ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/ref.icap.html -- 5.1 Кб -- 03.02.2002
Похожие документы

2412. icap_delete_calendar
. PHP Manual . Prev . Next . (PHP 4 >= 4.0.0) icap_delete_calendar -- Delete a calendar . string icap_delete_calendar ( int stream_id, string calendar) . Warning . This function is currently not documented, only the argument list is available. Prev . Home . Next . icap_rename_calendar . Up . icap_reopen
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.icap-delete-calendar.html -- 3.5 Кб -- 03.02.2002
Похожие документы

2413. icap_rename_calendar
. PHP Manual . Prev . Next . (PHP 4 >= 4.0.0) icap_rename_calendar -- Rename a calendar . string icap_rename_calendar ( int stream_id, string old_name, string new_name) . Warning . This function is currently not documented, only the argument list is available. Prev . Home . Next . icap_create_calendar . Up . icap_delete_calendar
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.icap-rename-calendar.html -- 3.6 Кб -- 03.02.2002
Похожие документы

2414. icap_create_calendar
. PHP Manual . Prev . Next . (PHP 4 >= 4.0.0) icap_create_calendar -- Create a new calendar . string icap_create_calendar ( int stream_id, string calendar) . Warning . This function is currently not documented, only the argument list is available. Prev . Home . Next . icap_list_alarms . Up . icap_rename_calendar
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.icap-create-calendar.html -- 3.5 Кб -- 03.02.2002
Похожие документы

2415. icap_list_alarms
... PHP 4 >= 4.0.0) icap_list_alarms -- Return a list of events that has an alarm triggered at the given datetime . int icap_list_alarms ( int stream_id, array date, array time) . Returns an array of event ID's that has an alarm going off at the given datetime. icap_list_alarms() function takes in a datetime for a calendar stream. An array of event id's that has an alarm should be going off at the datetime are returned. ... int year - year . int month - month . ... int hour - hour . ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.icap-list-alarms.html -- 4.0 Кб -- 03.02.2002
Похожие документы

2416. icap_snooze
. PHP Manual . Prev . Next . (PHP 4 >= 4.0.0) icap_snooze -- Snooze an alarm . string icap_snooze ( int stream_id, int uid) . icap_snooze() turns on an alarm for a calendar event specified by the uid . Returns TRUE . Prev . Home . Next . icap_delete_event . Up . icap_list_alarms
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.icap-snooze.html -- 3.4 Кб -- 03.02.2002
Похожие документы

2417. icap_delete_event
. PHP Manual . Prev . Next . (PHP 4 >= 4.0.0) icap_delete_event -- Delete an event from an ICAP calendar . string icap_delete_event ( int stream_id, int uid) . icap_delete_event() deletes the calendar event specified by the uid . Returns TRUE . Prev . Home . Next . icap_store_event . Up . icap_snooze
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.icap-delete-event.html -- 3.4 Кб -- 03.02.2002
Похожие документы

2418. icap_store_event
... PHP 4 >= 4.0.0) icap_store_event -- Store an event into an ICAP calendar . string icap_store_event ( int stream_id, object event) . ... string category - Category string of the event. string title - Title string of the event. string description - Description string of the event. int alarm - Number of minutes before the event to sned out an alarm. datetime start - datetime object of the start of the event. datetime end - datetime object of the end of the event. ... int month - month . ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.icap-store-event.html -- 4.6 Кб -- 03.02.2002
Похожие документы

2419. icap_fetch_event
... PHP 4 >= 4.0.0) icap_fetch_event -- Fetches an event from the calendar stream/ . ... int id - ID of that event. int public - TRUE if the event if public, FALSE if it is private. string category - Category string of the event. string title - Title string of the event. string description - Description string of the event. int alarm - number of minutes before the event to send an alarm/reminder. object start - Object containing a datetime entry. object end - Object containing a datetime entry. ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.icap-fetch-event.html -- 4.7 Кб -- 03.02.2002
Похожие документы

2420. icap_list_events
... Next . PHP 4 >= 4.0.0) icap_list_events -- Return a list of events between two given datetimes . array icap_list_events ( int stream_id, int begin_date [, int end_date]) . Returns an array of event ID's that are between the two given datetimes. icap_list_events() function takes in a beginning datetime and an end datetime for a calendar stream. An array of event id's that are between the given datetimes are returned. ... int year - year . int month - month . ... int hour - hour . ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.icap-list-events.html -- 4.0 Кб -- 03.02.2002
Похожие документы

В начало ] Пред. | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | След.В конец ]

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