|
|
![]() |
PHP учебник для администраторов чатов (часть 1)
Предисловие- Авторы и Участники
I. Приступая к работе- 1. Введение
- 2. Краткое руководство
II. Установка и настройка- 3. General Installation Considerations
- 4. Installation on Unix systems
- 5. Installation on Mac OS X
- 6. Installation on Windows systems
- 7. Installation of PECL extensions
- 8. Problems?
- 9. Runtime Configuration
III. Справочник языка- 10. Основы синтаксиса
-
11. Типы
- Булев
- Целые
- Числа с плавающей точкой
- Строки
- Массивы
- Объекты
- Ресурс
- NULL
- Псевдо-типы, используемые в этой документации
- Манипуляции с типами
- 12. Переменные
- 13. Константы
- 14. Выражения
- 15. Операторы
- Арифметические операторы
- Оператор присвоения
- Побитовые операторы
- Операторы сравнения
- Оператор управления ошибками
- Операторы исполнения
- Операторы инкремента и декремента
- Логические операторы
- Строковые операторы
- Операторы, работающие с массивами
- Оператор проверки принадлежности к классу
- 16. Control Structures
- if
- else
- elseif
- Alternative syntax for control structures
- while
- do-while
- for
- foreach
- break
- continue
- switch
- declare
- return
- require()
- include()
- require_once()
- include_once()
- 17. Функции
- 18. Classes and Objects (PHP 4)
- class
- extends
- Constructors
- Scope Resolution Operator (::)
- parent
- Serializing objects - objects in sessions
- The magic functions __sleep and __wakeup
- References inside the constructor
- Comparing objects
- 19. Классы и объекты (PHP 5)
- The Basics
- Autoloading Objects
- Конструкторы и деструкторы
- Visibility
- ::
- Static Keyword
- Константы в объектах
- Абстрактные классы
- Интерфейсы объектов
- Перегрузка
- Итераторы объектов
- Patterns
- Magic Methods
- Ключевое слово "final"
- Клонирование объектов
- Сравнение объектов
- Reflection
- Type Hinting
- 20. Exceptions
- 21. Ссылки. Разъяснения
- Что такое ссылки
- Что делают ссылки
- Чем ссылки не являются
- Передача по ссылке
- Возвращение по ссылке
- Сброс переменных-ссылок
- Неявное использование механизма ссылок
IV. Безопасность
22. Вступление23. Общие рассуждения24. Если PHP установлен как CGI25. Если PHP установлен как модуль Apache26. Безопасность файловой системы27. Безопасность баз данных28. Сообщения об ошибках29. Использование глобальных переменных (Register_Globals)30. Данные, введенные пользователем31. Magic Quotes32. Сокрытие PHP33. Необходимость обновлений
- 22. Вступление
- 23. Общие рассуждения
- 24. Если PHP установлен как CGI
- 25. Если PHP установлен как модуль Apache
- 26. Безопасность файловой системы
- 27. Безопасность баз данных
- 28. Сообщения об ошибках
- 29. Использование глобальных переменных (Register_Globals)
- 30. Данные, введенные пользователем
- 31. Magic Quotes
- 32. Сокрытие PHP
- 33. Необходимость обновлений
V. Отличительные особенности- 34. HTTP-Аутентификация в PHP
- 35. Cookies
- 36. Sessions
- 37. Работа с XForms
- 38. Загрузка файлов на сервер
- 39. Работа с удаленными файлами
- 40. Работа с соединениями
- 41. Постоянные соединения с базами данных
- 42. Защищенный режим
- 43. Использование PHP в командной строке
VI. Справочник функций
34. HTTP-Аутентификация в PHP35. Cookies36. Sessions37. Работа с XForms38. Загрузка файлов на сервер39. Работа с удаленными файлами40. Работа с соединениями41. Постоянные соединения с базами данных42. Защищенный режим43. Использование PHP в командной строке
- I. .NET Functions
- II. Функции для работы с сервером Apache
- apache_child_terminate -- Завершить процесс Apache по окончании текущего запроса
- apache_get_modules -- Get a list of loaded Apache modules
- apache_get_version -- Fetch Apache version
- apache_getenv -- Get an Apache subprocess_env variable
- apache_lookup_uri --
Осуществить частичный запрос на указанный URI и вернуть
все полученные сведения
- apache_note -- Установить и получить аннотации к запросу Apache
- apache_request_headers -- Осуществить выборку всех заголовков HTTP запросов
- apache_reset_timeout -- Reset the Apache write timer
- apache_response_headers --
Осуществить выборку всех заголовков HTTP ответа
- apache_setenv -- Установить переменную Apache subprocess_env
- ascii2ebcdic -- Преобразовать строку из ASCII в EBCDIC
- ebcdic2ascii -- Преобразовать строку из EBCDIC в ASCII
- getallheaders -- Получить все заголовки HTTP-запроса
- virtual -- Выполнить подзапрос Apache
- III. Alternative PHP Cache
- Содержание
- apc_cache_info --
Retrieves cached information (and meta-data) from APC's data store
- apc_clear_cache --
Clears the APC cache
- apc_define_constants --
Defines a set of constants for later retrieval and mass-definition
- apc_delete --
Removes a stored variable from the cache
- apc_fetch --
Fetch a stored variable from the cache
- apc_load_constants --
Loads a set of constants from the cache
- apc_sma_info --
Retrieves APC's Shared Memory Allocation information
- apc_store --
Cache a variable in the data store
- IV. Advanced PHP debugger
- Содержание
- apd_breakpoint -- Stops the interpreter and waits on a CR from the socket
- apd_callstack -- Returns the current call stack as an array
- apd_clunk -- Throw a warning and a callstack
- apd_continue -- Restarts the interpreter
- apd_croak -- Throw an error, a callstack and then exit
- apd_dump_function_table -- Outputs the current function table
- apd_dump_persistent_resources -- Return all persistent resources as an array
- apd_dump_regular_resources -- Return all current regular resources as an array
- apd_echo -- Echo to the debugging socket
- apd_get_active_symbols -- Get an array of the current variables names in the local scope
- apd_set_pprof_trace -- Starts the session debugging
- apd_set_session_trace -- Starts the session debugging
- apd_set_session -- Changes or sets the current debugging level
- apd_set_socket_session_trace -- Starts the remote session debugging
- override_function -- Overrides built-in functions
- rename_function -- Renames orig_name to new_name in the global function_table
- V. Функции для работы с массивами
- Содержание
- array_change_key_case -- Возвращает массив, символьные ключи которого преобразованы в верхний или нижний регистр символов
- array_chunk -- Разбить массив на части
- array_combine --
Создать новый массив, используя один массив в качестве ключей, а другой в качестве соответствующих значений
- array_count_values -- Подсчитать количество всех значений массива
- array_diff_assoc -- Вычислить расхождение в массивах с дополнительной проверкой индекса
- array_diff_key -- Вычислить расхождение в массивах, сравнивая ключи
- array_diff_uassoc --
Вычислить расхождение в массивах с дополнительной проверкой индекса,
осуществляемой при помощи функции, определённой пользователем
- array_diff_ukey -- Вычислить расхождение в массивах, используя функцию обратного вызова для сравнения ключей
- array_diff -- Вычислить расхождение в массивах
- array_fill -- Заполнить массив определенным значением
- array_filter --
Применяет фильтр к массиву, используя функцию обратного вызова
- array_flip -- Поменять местами значения массива
- array_intersect_assoc -- Вычислить схождение массивов с дополнительной проверкой индекса
- array_intersect_key -- Вычислить пересечение массивов, сравнивая ключи
- array_intersect_uassoc -- Вычислить пересечение массивов с дополнительной проверкой индекса,
осуществляемой при помощи функции, определённой пользователем
- array_intersect_ukey -- Вычислить пересечение массивов, используя функцию обратного вызова для сравнения ключей
- array_intersect -- Вычислить схождение массивов
- array_key_exists -- Проверить, присутствует ли в массиве указанный ключ или индекс
- array_keys -- Выбрать все ключи массива
- array_map --
Применить функцию обратного вызова ко всем элементам указанных массивов
- array_merge_recursive -- Рекурсивно слить два или большее количество массивов
- array_merge -- Слить два или большее количество массивов
- array_multisort -- Сортировать несколько массивов или многомерные массивы
- array_pad --
Увеличить размер массива до заданной величины
- array_pop -- Извлечь последний элемент массива
- array_product --
Вычислить произведение значений массива
- array_push --
Добавить один или несколько элеметов в конец массива
- array_rand --
Выбрать одно или несколько случайных значений из массива
- array_reduce --
Итеративно уменьшить массив к единственному значению, используя
функцию обратного вызова
- array_reverse --
Возвращает массив с элементами в обратном порядке
- array_search --
Осуществляет поиск данного значения в массиве и возвращает
соответствующий ключ в случае удачи
- array_shift --
Извлечь первый элемент массива
- array_slice -- Выбрать срез массива
- array_splice --
Удалить последовательность элементов массива и заменить её другой последовательностью
- array_sum --
Вычислить сумму значений массива
- array_udiff_assoc -- Вычислить расхождение в массивах с дополнительной проверкой индексов,
используя для сравнения значений функцию обратного вызова
- array_udiff_uassoc -- Вычислить расхождение в массивах с дополнительной проверкой индексов,
используя для сравнения значений и индексов функцию обратного вызова
- array_udiff -- Вычислить расхождение массивов, используя для сравнения функцию обратного вызова
- array_uintersect_assoc -- Вычислить пересечение массивов с дополнительной проверкой индексов,
используя для сравнения значений функцию обратного вызова
- array_uintersect_uassoc -- Вычислить пересечение массивов с дополнительной проверкой индекса,
используя для сравнения индексов и значений функцию обратного вызова
- array_uintersect -- Вычислить пересечение массивов, используя для сравнения значений функцию обратного вызова
- array_unique -- Убрать повторяющиеся значения из массива
- array_unshift --
Добавить один или несколько элементов в начало массива
- array_values -- Выбрать все значения массива
- array_walk_recursive --
Рекурсивно применить пользовательскую функцию к каждому элементу массива
- array_walk --
Применить пользовательскую функцию к каждому члену массива
- array --
Создать массив
- arsort --
Отсортировать массив в обратном порядке, сохраняя ключи
- asort -- Отсортировать массив, сохраняя ключи
- compact --
Создать массив, содержащий названия переменных и их значения
- count -- Посчитать количество элементов массива или количество свойств объекта
- current -- Возвратить текущий элемент массива
- each --
Возвратить текущую пару ключ/значение из массива и сместить его указатель
- end --
Установить внутренний указатель массива на его последний элемент
- extract --
Импортировать переменные из массива в текущую символьную таблицу.
- in_array -- Проверить, присутствует ли в массиве значение
- key -- Выбрать ключ из ассоциативного массива
- krsort -- Отсортировать массив по ключам в обратном порядке
- ksort -- Отсортировать массив по ключам
- list --
Присвоить переменным из списка значения подобно массиву
- natcasesort --
Отсортировать массив, используя алгоритм "natural order" не принимая во внимание регистр символов
- natsort --
Отсортировать массив, используя алгоритм "natural order"
- next --
Передвинуть внутренний указатель массива на одну позицию вперёд
- pos -- Alias of current()
- prev -- Передвинуть внутренний указатель массива на одну позицию назад
- range --
Создать массив, содержащий диапазон элементов
- reset --
Установить внутренний указатель массива на его первый элемент
- rsort -- Отсортировать массив в обратном порядке
- shuffle -- Перемешать массив
- sizeof -- Alias of count()
- sort -- Отсортировать массив
- uasort --
Отсортировать массив, используя пользовательскую функцию для сравнения элементов
с сохранением ключей
- uksort --
Отсортировать массив по ключам, используя пользовательскую функцию для сравнения ключей
- usort --
Отсортировать массив по значениям используя пользовательскую функцию для
сравнения элементов
- VI. Aspell functions [deprecated]
- VII. BCMath Arbitrary Precision Mathematics Functions
- Содержание
- bcadd -- Add two arbitrary precision numbers
- bccomp -- Compare two arbitrary precision numbers
- bcdiv -- Divide two arbitrary precision numbers
- bcmod --
Get modulus of an arbitrary precision number
- bcmul -- Multiply two arbitrary precision number
- bcpow --
Raise an arbitrary precision number to another
- bcpowmod --
Raise an arbitrary precision number to another, reduced by a specified modulus
- bcscale --
Set default scale parameter for all bc math functions
- bcsqrt --
Get the square root of an arbitrary precision number
- bcsub --
Subtract one arbitrary precision number from another
- VIII. PHP bytecode Compiler
- Содержание
- bcompiler_load_exe -- Reads and creates classes from a bcompiler exe file
- bcompiler_load -- Reads and creates classes from a bz compressed file
- bcompiler_parse_class -- Reads the bytecodes of a class and calls back to a user function
- bcompiler_read -- Reads and creates classes from a filehandle
- bcompiler_write_class -- Writes an defined class as bytecodes
- bcompiler_write_constant -- Writes a defined constant as bytecodes
- bcompiler_write_exe_footer -- Writes the start pos, and sig to the end of a exe type file
- bcompiler_write_file -- Writes a php source file as bytecodes
- bcompiler_write_footer -- Writes the single character \x00 to indicate End of compiled data
- bcompiler_write_function -- Writes an defined function as bytecodes
- bcompiler_write_functions_from_file -- Writes all functions defined in a file as bytecodes
- bcompiler_write_header -- Writes the bcompiler header
- IX. Функции сжатия Bzip2
- Содержание
- bzclose -- Закрывает файл bzip2
- bzcompress -- Сжимает данные с использованием bzip2
- bzdecompress -- Распаковывает данные, сжатые с использованием bzip2
- bzerrno -- Возвращает код ошибки работы с bzip2
- bzerror -- Возвращает код и строку ошибки работы с bzip2
- bzerrstr -- Возвращает строку ошибки работы с bzip2
- bzflush -- Вызывает запись всех буфферизированных данных
- bzopen -- Открывает для работы файл, сжатый с использованием bzip2
- bzread -- Бинарно-безопасное чтение файла bzip2
- bzwrite -- Бинарно-безопасная запись bzip2 файла
- X. Calendar Functions
- Содержание
- cal_days_in_month -- Return the number of days in a month for a given year and calendar
- cal_from_jd -- Converts from Julian Day Count to a supported calendar
- cal_info -- Returns information about a particular calendar
- cal_to_jd -- Converts from a supported calendar to Julian Day Count
- easter_date --
Get Unix timestamp for midnight on Easter of a given year
- easter_days --
Get number of days after March 21 on which Easter falls for a
given year
- FrenchToJD --
Converts a date from the French Republican Calendar to a Julian
Day Count
- GregorianToJD --
Converts a Gregorian date to Julian Day Count
- JDDayOfWeek -- Returns the day of the week
- JDMonthName -- Returns a month name
- JDToFrench --
Converts a Julian Day Count to the French Republican Calendar
- JDToGregorian -- Converts Julian Day Count to Gregorian date
- jdtojewish --
Converts a Julian day count to a Jewish calendar date
- JDToJulian --
Converts a Julian Day Count to a Julian Calendar Date
- jdtounix -- Convert Julian Day to Unix timestamp
- JewishToJD --
Converts a date in the Jewish Calendar to Julian Day Count
- JulianToJD --
Converts a Julian Calendar date to Julian Day Count
- unixtojd -- Convert Unix timestamp to Julian Day
- XI. CCVS API Functions [deprecated]
- Содержание
- ccvs_add -- Add data to a transaction
- ccvs_auth -- Perform credit authorization test on a transaction
- ccvs_command --
Performs a command which is peculiar to a single protocol,
and thus is not available in the general CCVS API
- ccvs_count --
Find out how many transactions of a given type are stored in the system
- ccvs_delete -- Delete a transaction
- ccvs_done -- Terminate CCVS engine and do cleanup work
- ccvs_init -- Initialize CCVS for use
- ccvs_lookup --
Look up an item of a particular type in the database #
- ccvs_new -- Create a new, blank transaction
- ccvs_report -- Return the status of the background communication process
- ccvs_return --
Transfer funds from the merchant to the credit card holder
- ccvs_reverse --
Perform a full reversal on an already-processed authorization
- ccvs_sale --
Transfer funds from the credit card holder to the merchant
- ccvs_status -- Check the status of an invoice
- ccvs_textvalue -- Get text return value for previous function call
- ccvs_void --
Perform a full reversal on a completed transaction
- XII. Функции работы с Классами/Объектами
- Содержание
- call_user_method_array --
Вызываем метод объекта с массивом параметров [устаревшее]
- call_user_method --
Вызывает метод указанного объекта [устаревшее]
- class_exists -- Проверяет был ли объявлен класс
- get_class_methods -- Возвращает массив имен методов класса
- get_class_vars --
Возвращает массив свойств класса с их инициализационными значенями
- get_class -- Возвращает имя класса к которому принадлежит объект
- get_declared_classes -- Возвращает массив с именами объявленных классов
- get_declared_interfaces --
Возвращает массив всех объявленных в текущей итерации интерфейсов.
- get_object_vars -- Возвращает ассоциативный массив свойств и значений объекта
- get_parent_class -- Возвращает имя класса базового для объекта или класса
- interface_exists -- Checks if the interface has been defined
- is_a --
Возвращает TRUE если объект принадлежит классу или является одним из
его наследователей.
- is_subclass_of --
Возвращает TRUE если объект является экземпляром класса, наследующего
данный.
- method_exists -- Проверяет существует ли метод в данном классе
- property_exists --
Checks if the object or class has a property
- XIII. Classkit Functions
- Содержание
- classkit_import -- Import new class method definitions from a file
- classkit_method_add -- Dynamically adds a new method to a given class
- classkit_method_copy -- Copies a method from class to another
- classkit_method_redefine -- Dynamically changes the code of the given method
- classkit_method_remove -- Dynamically removes the given method
- classkit_method_rename -- Dynamically changes the name of the given method
- XIV. ClibPDF Functions
- Содержание
- cpdf_add_annotation -- Adds annotation
- cpdf_add_outline -- Adds bookmark for current page
- cpdf_arc -- Draws an arc
- cpdf_begin_text -- Starts text section
- cpdf_circle -- Draw a circle
- cpdf_clip -- Clips to current path
- cpdf_close -- Closes the pdf document
- cpdf_closepath_fill_stroke -- Close, fill and stroke current path
- cpdf_closepath_stroke -- Close path and draw line along path
- cpdf_closepath -- Close path
- cpdf_continue_text -- Output text in next line
- cpdf_curveto -- Draws a curve
- cpdf_end_text -- Ends text section
- cpdf_fill_stroke -- Fill and stroke current path
- cpdf_fill -- Fill current path
- cpdf_finalize_page -- Ends page
- cpdf_finalize -- Ends document
- cpdf_global_set_document_limits -- Sets document limits for any pdf document
- cpdf_import_jpeg -- Opens a JPEG image
- cpdf_lineto -- Draws a line
- cpdf_moveto -- Sets current point
- cpdf_newpath -- Starts a new path
- cpdf_open -- Opens a new pdf document
- cpdf_output_buffer -- Outputs the pdf document in memory buffer
- cpdf_page_init -- Starts new page
- cpdf_place_inline_image -- Places an image on the page
- cpdf_rect -- Draw a rectangle
- cpdf_restore -- Restores formerly saved environment
- cpdf_rlineto -- Draws a line
- cpdf_rmoveto -- Sets current point
- cpdf_rotate_text --
Sets text rotation angle
- cpdf_rotate -- Sets rotation
- cpdf_save_to_file -- Writes the pdf document into a file
- cpdf_save -- Saves current environment
- cpdf_scale -- Sets scaling
- cpdf_set_action_url --
Sets hyperlink
- cpdf_set_char_spacing -- Sets character spacing
- cpdf_set_creator -- Sets the creator field in the pdf document
- cpdf_set_current_page -- Sets current page
- cpdf_set_font_directories --
Sets directories to search when using external fonts
- cpdf_set_font_map_file --
Sets fontname to filename translation map when using external fonts
- cpdf_set_font -- Select the current font face and size
- cpdf_set_horiz_scaling -- Sets horizontal scaling of text
- cpdf_set_keywords -- Sets the keywords field of the pdf document
- cpdf_set_leading -- Sets distance between text lines
- cpdf_set_page_animation -- Sets duration between pages
- cpdf_set_subject -- Sets the subject field of the pdf document
- cpdf_set_text_matrix -- Sets the text matrix
- cpdf_set_text_pos -- Sets text position
- cpdf_set_text_rendering -- Determines how text is rendered
- cpdf_set_text_rise -- Sets the text rise
- cpdf_set_title -- Sets the title field of the pdf document
- cpdf_set_viewer_preferences --
How to show the document in the viewer
- cpdf_set_word_spacing -- Sets spacing between words
- cpdf_setdash -- Sets dash pattern
- cpdf_setflat -- Sets flatness
- cpdf_setgray_fill -- Sets filling color to gray value
- cpdf_setgray_stroke -- Sets drawing color to gray value
- cpdf_setgray -- Sets drawing and filling color to gray value
- cpdf_setlinecap -- Sets linecap parameter
- cpdf_setlinejoin -- Sets linejoin parameter
- cpdf_setlinewidth -- Sets line width
- cpdf_setmiterlimit -- Sets miter limit
- cpdf_setrgbcolor_fill -- Sets filling color to rgb color value
- cpdf_setrgbcolor_stroke -- Sets drawing color to rgb color value
- cpdf_setrgbcolor -- Sets drawing and filling color to rgb color value
- cpdf_show_xy -- Output text at position
- cpdf_show -- Output text at current position
- cpdf_stringwidth -- Returns width of text in current font
- cpdf_stroke -- Draw line along path
- cpdf_text -- Output text with parameters
- cpdf_translate -- Sets origin of coordinate system
- XV. COM and .Net (Windows)
- Содержание
- COM -- COM class
- DOTNET -- DOTNET class
- VARIANT -- VARIANT class
- com_addref --
Increases the components reference counter [deprecated]
- com_create_guid --
Generate a globally unique identifier (GUID)
- com_event_sink --
Connect events from a COM object to a PHP object
- com_get_active_object --
Returns a handle to an already running instance of a COM object
- com_get --
Gets the value of a COM Component's property [deprecated]
- com_invoke --
Calls a COM component's method [deprecated]
- com_isenum -- Indicates if a COM object has an IEnumVariant interface for iteration [deprecated]
- com_load_typelib -- Loads a Typelib
- com_load --
Creates a new reference to a COM component [deprecated]
- com_message_pump --
Process COM messages, sleeping for up to timeoutms milliseconds
- com_print_typeinfo --
Print out a PHP class definition for a dispatchable interface
- com_propget -- Alias of com_get()
- com_propput -- Alias of com_set()
- com_propset -- Alias of com_set()
- com_release --
Decreases the components reference counter [deprecated]
- com_set --
Assigns a value to a COM component's property
- variant_abs --
Returns the absolute value of a variant
- variant_add --
"Adds" two variant values together and returns the result
- variant_and --
performs a bitwise AND operation between two variants and returns the result
- variant_cast --
Convert a variant into a new variant object of another type
- variant_cat --
concatenates two variant values together and returns the result
- variant_cmp --
Compares two variants
- variant_date_from_timestamp --
Returns a variant date representation of a unix timestamp
- variant_date_to_timestamp --
Converts a variant date/time value to unix timestamp
- variant_div --
Returns the result from dividing two variants
- variant_eqv --
Performs a bitwise equivalence on two variants
- variant_fix --
Returns the integer portion ? of a variant
- variant_get_type -- Returns the type of a variant object
- variant_idiv --
Converts variants to integers and then returns the result from dividing them
- variant_imp --
Performs a bitwise implication on two variants
- variant_int --
Returns the integer portion of a variant
- variant_mod --
Divides two variants and returns only the remainder
- variant_mul --
multiplies the values of the two variants and returns the result
- variant_neg --
Performs logical negation on a variant
- variant_not --
Performs bitwise not negation on a variant
- variant_or --
Performs a logical disjunction on two variants
- variant_pow --
Returns the result of performing the power function with two variants
- variant_round --
Rounds a variant to the specified number of decimal places
- variant_set_type --
Convert a variant into another type "in-place"
- variant_set --
Assigns a new value for a variant object
- variant_sub --
subtracts the value of the right variant from the left variant value and returns the result
- variant_xor --
Performs a logical exclusion on two variants
- XVI. Crack Functions
- XVII. Функции определения типа символов
- Содержание
- ctype_alnum -- Check for alphanumeric character(s)
- ctype_alpha -- Check for alphabetic character(s)
- ctype_cntrl -- Check for control character(s)
- ctype_digit -- Проверяет является ли символ цифрой
- ctype_graph -- Check for any printable character(s) except space
- ctype_lower -- Check for lowercase character(s)
- ctype_print -- Check for printable character(s)
- ctype_punct --
Check for any printable character which is not whitespace or an
alphanumeric character
- ctype_space -- Check for whitespace character(s)
- ctype_upper -- Check for uppercase character(s)
- ctype_xdigit --
Проверяет является ли указанный символ шестнадцатеричной цифрой
- XVIII. Функции CURL, Client URL Library
- Содержание
- curl_close -- Завершает сеанс CURL
- curl_copy_handle --
Copy a cURL handle along with all of its preferences
- curl_errno -- Возвращает код последней ошибки
- curl_error --
Возвращает строку с описанием последней
ошибки
- curl_exec -- Выполняет запрос CURL
- curl_getinfo -- Возвращает информацию о последней операции
- curl_init -- Инициализирует сеанс CURL
- curl_multi_add_handle -- Добавляет обычный cURL дескриптор к набору cURL дескрипторов
- curl_multi_close -- Закрывает набор cURL дескрипторов
- curl_multi_exec -- Выполняет операции с набором cURL дескрипторов
- curl_multi_getcontent -- Возвращает результат операции, если был установлен параметр
CURLOPT_RETURNTRANSFER
- curl_multi_info_read -- Возвращает информацию о текущих операциях
- curl_multi_init -- Создает набор cURL дескрипторов
- curl_multi_remove_handle -- Удаляет cURL дескриптор из набора cURL дескрипторов
- curl_multi_select -- Возвращает сокеты, созданные модулем cURL
- curl_setopt -- Устанавливает параметр для сеанса CURL
- curl_version -- Возвращает версию CURL
- XIX. Cybercash Payment Functions
- XX. Credit Mutuel CyberMUT functions
- XXI. Cyrus IMAP administration Functions
- Содержание
- cyrus_authenticate -- Authenticate against a Cyrus IMAP server
- cyrus_bind -- Bind callbacks to a Cyrus IMAP connection
- cyrus_close -- Close connection to a Cyrus IMAP server
- cyrus_connect -- Connect to a Cyrus IMAP server
- cyrus_query -- Send a query to a Cyrus IMAP server
- cyrus_unbind -- Unbind ...
- XXII. Функции для работы с датой и временем
- Содержание
- checkdate -- Проверяет правильность даты по грегорианскому календарю
- date_default_timezone_get --
Gets the default timezone used by all date/time functions in a script
- date_default_timezone_set --
Sets the default timezone used by all date/time functions in a script
- date_sunrise --
Returns time of sunrise for a given day and location
- date_sunset --
Returns time of sunset for a given day and location
- date -- Форматирует системную дату/время
- getdate -- Возвращает информацию о дате/времени
- gettimeofday -- Возвращает текущее время
- gmdate -- Форматирует дату/время по Гринвичу
- gmmktime -- Возвращает метку времени Unix для времени по Гринвичу
- gmstrftime -- Форматирует дату/время по Гринвичу с учетом текущей локали
- idate -- Format a local time/date as integer
- localtime -- Возвращает системное время
- microtime -- Возвращает метку времени с микросекундами
- mktime -- Возвращает метку времени для заданной даты
- strftime -- Форматирует текущую дату/время с учетом текущей локали
- strptime --
Parse a time/date generated with strftime()
- strtotime -- Преобразует текстовое представление даты на английском языке в метку времени Unix
- time -- Возвращает текущую метку времени
- XXIII. DB++ Functions
- Содержание
- dbplus_add -- Add a tuple to a relation
- dbplus_aql -- Perform AQL query
- dbplus_chdir -- Get/Set database virtual current directory
- dbplus_close -- Close a relation
- dbplus_curr -- Get current tuple from relation
- dbplus_errcode --
Get error string for given errorcode or last error
- dbplus_errno -- Get error code for last operation
- dbplus_find -- Set a constraint on a relation
- dbplus_first -- Get first tuple from relation
- dbplus_flush -- Flush all changes made on a relation
- dbplus_freealllocks -- Free all locks held by this client
- dbplus_freelock -- Release write lock on tuple
- dbplus_freerlocks -- Free all tuple locks on given relation
- dbplus_getlock -- Get a write lock on a tuple
- dbplus_getunique -- Get an id number unique to a relation
- dbplus_info -- Get information about a relation
- dbplus_last -- Get last tuple from relation
- dbplus_lockrel -- Request write lock on relation
- dbplus_next -- Get next tuple from relation
- dbplus_open -- Open relation file
- dbplus_prev -- Get previous tuple from relation
- dbplus_rchperm -- Change relation permissions
- dbplus_rcreate -- Creates a new DB++ relation
- dbplus_rcrtexact -- Creates an exact but empty copy of a relation including indices
- dbplus_rcrtlike -- Creates an empty copy of a relation with default indices
- dbplus_resolve -- Resolve host information for relation
- dbplus_restorepos -- Restore position
- dbplus_rkeys -- Specify new primary key for a relation
- dbplus_ropen -- Open relation file local
- dbplus_rquery -- Perform local (raw) AQL query
- dbplus_rrename -- Rename a relation
- dbplus_rsecindex --
Create a new secondary index for a relation
- dbplus_runlink -- Remove relation from filesystem
- dbplus_rzap -- Remove all tuples from relation
- dbplus_savepos -- Save position
- dbplus_setindex -- Set index
- dbplus_setindexbynumber -- Set index by number
- dbplus_sql -- Perform SQL query
- dbplus_tcl -- Execute TCL code on server side
- dbplus_tremove -- Remove tuple and return new current tuple
- dbplus_undo -- Undo
- dbplus_undoprepare -- Prepare undo
- dbplus_unlockrel -- Give up write lock on relation
- dbplus_unselect -- Remove a constraint from relation
- dbplus_update -- Update specified tuple in relation
- dbplus_xlockrel -- Request exclusive lock on relation
- dbplus_xunlockrel -- Free exclusive lock on relation
- XXIV. Database (dbm-style) Abstraction Layer Functions
- Содержание
- dba_close -- Close a DBA database
- dba_delete -- Delete DBA entry specified by key
- dba_exists -- Check whether key exists
- dba_fetch -- Fetch data specified by key
- dba_firstkey -- Fetch first key
- dba_handlers -- List all the handlers available
- dba_insert -- Insert entry
- dba_key_split --
Splits a key in string representation into array representation
- dba_list -- List all open database files
- dba_nextkey -- Fetch next key
- dba_open -- Open database
- dba_optimize -- Optimize database
- dba_popen -- Open database persistently
- dba_replace -- Replace or insert entry
- dba_sync -- Synchronize database
- XXV. dBase Functions
- Содержание
- dbase_add_record -- Adds a record to a database
- dbase_close -- Closes a database
- dbase_create -- Creates a database
- dbase_delete_record -- Deletes a record from a database
- dbase_get_header_info -- Gets the header info of a database
- dbase_get_record_with_names --
Gets a record from a database as an associative array
- dbase_get_record --
Gets a record from a database as an indexed array
- dbase_numfields -- Gets the number of fields of a database
- dbase_numrecords -- Gets the number of records in a database
- dbase_open -- Opens a database
- dbase_pack -- Packs a database
- dbase_replace_record -- Replaces a record in a database
- XXVI. DBM Functions [deprecated]
- Содержание
- dblist --
Describes the DBM-compatible library being used
- dbmclose -- Closes a dbm database
- dbmdelete --
Deletes the value for a key from a DBM database
- dbmexists --
Tells if a value exists for a key in a DBM database
- dbmfetch --
Fetches a value for a key from a DBM database
- dbmfirstkey --
Retrieves the first key from a DBM database
- dbminsert --
Inserts a value for a key in a DBM database
- dbmnextkey --
Retrieves the next key from a DBM database
- dbmopen -- Opens a DBM database
- dbmreplace --
Replaces the value for a key in a DBM database
- XXVII. dbx Functions
- XXVIII. Direct IO Functions
- Содержание
- dio_close -- Closes the file descriptor given by fd
- dio_fcntl -- Performs a c library fcntl on fd
- dio_open --
Opens a new filename with specified permissions of flags and
creation permissions of mode
- dio_read -- Reads bytes from a file descriptor
- dio_seek -- Seeks to pos on fd from whence
- dio_stat --
Gets stat information about the file descriptor fd
- dio_tcsetattr --
Sets terminal attributes and baud rate for a serial port
- dio_truncate --
Truncates file descriptor fd to offset bytes
- dio_write --
Writes data to fd with optional truncation at length
- XXIX. Функции для работы с каталогами
- Содержание
- chdir -- Сменить каталог
- chroot -- Сменить корневой каталог
- dir -- Класс directory
- closedir -- Освободить дескриптор каталога
- getcwd -- Получить имя текущего рабочего каталога
- opendir -- Открыть каталог
- readdir -- Получить элемент каталога по его дескриптору
- rewinddir -- Сбросить дескриптор каталога
- scandir --
Получить список файлов и каталогов, расположенных по указанному пути
- XXX. DOM Functions
- Содержание
- DOMAttr->__construct() --
Creates a new DOMAttr object
- DOMAttr->isId() --
Checks if attribute is a defined ID
- DOMCharacterData->appendData() --
Append the string to the end of the character data of the node
- DOMCharacterData->deleteData() --
Remove a range of characters from the node
- DOMCharacterData->insertData() --
Insert a string at the specified 16-bit unit offset
- DOMCharacterData->replaceData() --
Replace a substring within the DOMCharacterData node
- DOMCharacterData->substringData() --
Extracts a range of data from the node
- DOMComment->__construct() --
Creates a new DOMComment object
- DOMDocument->__construct() --
Creates a new DOMDocument object
- DOMDocument->createAttribute() -- Create new attribute
- DOMDocument->createAttributeNS() --
Create new attribute node with an associated namespace
- DOMDocument->createCDATASection() -- Create new cdata node
- DOMDocument->createComment() -- Create new comment node
- DOMDocument->createDocumentFragment() -- Create new document fragment
- DOMDocument->createElement() -- Create new element node
- DOMDocument->createElementNS() --
Create new element node with an associated namespace
- DOMDocument->createEntityReference() -- Create new entity reference node
- DOMDocument->createProcessingInstruction() -- Creates new PI node
- DOMDocument->createTextNode() -- Create new text node
- DOMDocument->getElementById() -- Searches for an element with a certain id
- DOMDocument->getElementsByTagName() -- Searches for all elements with given tag name
- DOMDocument->getElementsByTagNameNS() --
Searches for all elements with given tag name in specified namespace
- DOMDocument->importNode() -- Import node into current document
- DOMDocument->load() --
Load XML from a file
- DOMDocument->loadHTML() --
Load HTML from a string
- DOMDocument->loadHTMLFile() --
Load HTML from a file
- DOMDocument->loadXML() --
Load XML from a string
- DOMDocument->normalize() --
Normalizes the document
- DOMDocument->relaxNGValidate() --
Performs relaxNG validation on the document
- DOMDocument->relaxNGValidateSource() --
Performs relaxNG validation on the document
- DOMDocument->save() --
Dumps the internal XML tree back into a file
- DOMDocument->saveHTML() --
Dumps the internal document into a string using HTML formatting
- DOMDocument->saveHTMLFile() --
Dumps the internal document into a file using HTML formatting
- DOMDocument->saveXML() --
Dumps the internal XML tree back into a string
- DOMDocument->schemaValidate() --
Validates a document based on a schema
- DOMDocument->schemaValidateSource() --
Validates a document based on a schema
- DOMDocument->validate() --
Validates the document based on its DTD
- DOMDocument->xinclude() --
Substitutes XIncludes in a DOMDocument Object
- DOMElement->__construct() --
Creates a new DOMElement object
- DOMElement->getAttribute() -- Returns value of attribute
- DOMElement->getAttributeNode() -- Returns attribute node
- DOMElement->getAttributeNodeNS() --
Returns attribute node
- DOMElement->getAttributeNS() -- Returns value of attribute
- DOMElement->getElementsByTagName() -- Gets elements by tagname
- DOMElement->getElementsByTagNameNS() -- Get elements by namespaceURI and localName
- DOMElement->hasAttribute() -- Checks to see if attribute exists
- DOMElement->hasAttributeNS() --
Checks to see if attribute exists
- DOMElement->removeAttribute() -- Removes attribute
- DOMElement->removeAttributeNode() -- Removes attribute
- DOMElement->removeAttributeNS() -- Removes attribute
- DOMElement->setAttribute() -- Adds new attribute
- DOMElement->setAttributeNode() -- Adds new attribute node to element
- DOMElement->setAttributeNodeNS() -- Adds new attribute node to element
- DOMElement->setAttributeNS() -- Adds new attribute
- DOMAttr->__construct() --
Creates a new DOMEntityReference object
- DOMImplementation->__construct() --
Creates a new DOMImplementation object
- DOMImplementation->createDocument() --
Creates a DOMDocument object of the specified type with its document element
- DOMImplementation->createDocumentType() --
Creates an empty DOMDocumentType object
- DOMImplementation->hasFeature() --
Test if the DOM implementation implements a specific feature
- DOMNamedNodeMap->getNamedItem() --
Retrieves a node specified by name
- DOMNamedNodeMap->getNamedItemNS() --
Retrieves a node specified by local name and namespace URI
- DOMNamedNodeMap->item() -- Retrieves a node specified by index
- DOMNode->appendChild() --
Adds new child at the end of the children
- DOMNode->cloneNode() --
Clones a node
- DOMNode->hasAttributes() --
Checks if node has attributes
- DOMNode->hasChildNodes() --
Checks if node has children
- DOMNode->insertBefore() --
Adds a new child before a reference node
- DOMNode->isSameNode() --
Indicates if two nodes are the same node
- DOMNode->isSupported() --
Checks if feature is supported for specified version
- DOMNode->lookupNamespaceURI() --
Gets the namespace URI of the node based on the prefix
- DOMNode->lookupPrefix() --
Gets the namespace prefix of the node based on the namespace URI
- DOMNode->normalize() --
Normalizes the node
- DOMNode->removeChild() --
Removes child from list of children
- DOMNode->replaceChild() --
Replaces a child
- DOMNodelist->item() --
Retrieves a node specified by index
- DOMProcessingInstruction->__construct() --
Creates a new DOMProcessingInstruction object
- DOMText->__construct() --
Creates a new DOMText object
- DOMText->isWhitespaceInElementContent() --
Indicates whether this text node contains whitespace
- DOMText->splitText() --
Breaks this node into two nodes at the specified offset
- DOMXPath->__construct() --
Creates a new DOMXPath object
- DOMXPath->evaluate() --
Evaluates the given XPath expression and returns a typed result if possible.
- DOMXPath->query() --
Evaluates the given XPath expression
- DOMXPath->registerNamespace() --
Registers the namespace with the DOMXPath object
- dom_import_simplexml --
Gets a DOMElement object from a SimpleXMLElement object
- XXXI. DOM XML Functions
- Содержание
- DomAttribute->name --
Returns the name of attribute
- DomAttribute->set_value --
Sets the value of an attribute
- DomAttribute->specified --
Checks if attribute is specified
- DomAttribute->value --
Returns value of attribute
- DomDocument->add_root --
Adds a root node [deprecated]
- DomDocument->create_attribute -- Create new attribute
- DomDocument->create_cdata_section -- Create new cdata node
- DomDocument->create_comment -- Create new comment node
- DomDocument->create_element_ns --
Create new element node with an associated namespace
- DomDocument->create_element -- Create new element node
- DomDocument->create_entity_reference --
Create an entity reference
- DomDocument->create_processing_instruction -- Creates new PI node
- DomDocument->create_text_node -- Create new text node
- DomDocument->doctype --
Returns the document type
- DomDocument->document_element --
Returns root element node
- DomDocument->dump_file --
Dumps the internal XML tree back into a file
- DomDocument->dump_mem --
Dumps the internal XML tree back into a string
- DomDocument->get_element_by_id --
Searches for an element with a certain id
- DomDocument->get_elements_by_tagname --
Returns array with nodes with given tagname in document or empty array, if not found
- DomDocument->html_dump_mem --
Dumps the internal XML tree back into a string as HTML
- DomDocument->xinclude --
Substitutes XIncludes in a DomDocument Object
- DomDocumentType->entities() --
Returns list of entities
- DomDocumentType->internal_subset() --
Returns internal subset
- DomDocumentType->name() --
Returns name of document type
- DomDocumentType->notations() --
Returns list of notations
- DomDocumentType->public_id() --
Returns public id of document type
- DomDocumentType->system_id() --
Returns the system id of document type
- DomElement->get_attribute_node() --
Returns the node of the given attribute
- DomElement->get_attribute() --
Returns the value of the given attribute
- DomElement->get_elements_by_tagname() --
Gets elements by tagname
- DomElement->has_attribute() --
Checks to see if an attribute exists in the current node
- DomElement->remove_attribute() --
Removes attribute
- DomElement->set_attribute() --
Sets the value of an attribute
- DomElement->tagname() --
Returns the name of the current element
- DomNode->add_namespace --
Adds a namespace declaration to a node
- DomNode->append_child --
Adds a new child at the end of the children
- DomNode->append_sibling --
Adds new sibling to a node
- DomNode->attributes --
Returns list of attributes
- DomNode->child_nodes --
Returns children of node
- DomNode->clone_node --
Clones a node
- DomNode->dump_node --
Dumps a single node
- DomNode->first_child --
Returns first child of node
- DomNode->get_content --
Gets content of node
- DomNode->has_attributes --
Checks if node has attributes
- DomNode->has_child_nodes --
Checks if node has children
- DomNode->insert_before --
Inserts new node as child
- DomNode->is_blank_node --
Checks if node is blank
- DomNode->last_child --
Returns last child of node
- DomNode->next_sibling --
Returns the next sibling of node
- DomNode->node_name --
Returns name of node
- DomNode->node_type --
Returns type of node
- DomNode->node_value --
Returns value of a node
- DomNode->owner_document --
Returns the document this node belongs to
- DomNode->parent_node --
Returns the parent of the node
- DomNode->prefix --
Returns name space prefix of node
- DomNode->previous_sibling --
Returns the previous sibling of node
- DomNode->remove_child --
Removes child from list of children
- DomNode->replace_child --
Replaces a child
- DomNode->replace_node --
Replaces node
- DomNode->set_content --
Sets content of node
- DomNode->set_name --
Sets name of node
- DomNode->set_namespace --
Sets namespace of a node
- DomNode->unlink_node --
Deletes node
- DomProcessingInstruction->data --
Returns the data of ProcessingInstruction node
- DomProcessingInstruction->target --
Returns the target of a ProcessingInstruction node
- DomXsltStylesheet->process() --
Applies the XSLT-Transformation on a DomDocument Object
- DomXsltStylesheet->result_dump_file() --
Dumps the result from a XSLT-Transformation into a file
- DomXsltStylesheet->result_dump_mem() --
Dumps the result from a XSLT-Transformation back into a string
- domxml_new_doc --
Creates new empty XML document
- domxml_open_file -- Creates a DOM object from an XML file
- domxml_open_mem -- Creates a DOM object of an XML document
- domxml_version --
Gets the XML library version
- domxml_xmltree --
Creates a tree of PHP objects from an XML document
- domxml_xslt_stylesheet_doc --
Creates a DomXsltStylesheet Object from a DomDocument Object
- domxml_xslt_stylesheet_file --
Creates a DomXsltStylesheet Object from an XSL document in a file
- domxml_xslt_stylesheet --
Creates a DomXsltStylesheet object from an XSL document in a string
- domxml_xslt_version --
Gets the XSLT library version
- xpath_eval_expression --
Evaluates the XPath Location Path in the given string
- xpath_eval --
Evaluates the XPath Location Path in the given string
- xpath_new_context --
Creates new xpath context
- xpath_register_ns_auto --
Register the given namespace in the passed XPath context
- xpath_register_ns --
Register the given namespace in the passed XPath context
- xptr_eval --
Evaluate the XPtr Location Path in the given string
- xptr_new_context --
Create new XPath Context
- XXXII. Error Handling and Logging Functions
- Содержание
- debug_backtrace -- Generates a backtrace
- debug_print_backtrace --
Prints a backtrace
- error_log -- Send an error message somewhere
- error_reporting -- Sets which PHP errors are reported
- restore_error_handler -- Restores the previous error handler function
- restore_exception_handler --
Restores the previously defined exception handler function
- set_error_handler --
Sets a user-defined error handler function
- set_exception_handler --
Sets a user-defined exception handler function
- trigger_error -- Generates a user-level error/warning/notice message
- user_error -- Alias of trigger_error()
- XXXIII. Exif Functions
- XXXIV. Expect Functions
- XXXV. File Alteration Monitor Functions
- Содержание
- fam_cancel_monitor -- Terminate monitoring
- fam_close -- Close FAM connection
- fam_monitor_collection -- Monitor a collection of files in a directory for changes
- fam_monitor_directory -- Monitor a directory for changes
- fam_monitor_file -- Monitor a regular file for changes
- fam_next_event -- Get next pending FAM event
- fam_open -- Open connection to FAM daemon
- fam_pending -- Check for pending FAM events
- fam_resume_monitor -- Resume suspended monitoring
- fam_suspend_monitor -- Temporarily suspend monitoring
- XXXVI. Forms Data Format Functions
- Содержание
- fdf_add_doc_javascript -- Adds javascript code to the FDF document
- fdf_add_template -- Adds a template into the FDF document
- fdf_close -- Close an FDF document
- fdf_create -- Create a new FDF document
- fdf_enum_values -- Call a user defined function for each document value
- fdf_errno -- Return error code for last fdf operation
- fdf_error -- Return error description for fdf error code
- fdf_get_ap -- Get the appearance of a field
- fdf_get_attachment -- Extracts uploaded file embedded in the FDF
- fdf_get_encoding -- Get the value of the /Encoding key
- fdf_get_file -- Get the value of the /F key
- fdf_get_flags -- Gets the flags of a field
- fdf_get_opt -- Gets a value from the opt array of a field
- fdf_get_status -- Get the value of the /STATUS key
- fdf_get_value -- Get the value of a field
- fdf_get_version -- Gets version number for FDF API or file
- fdf_header -- Sets FDF-specific output headers
- fdf_next_field_name -- Get the next field name
- fdf_open_string -- Read a FDF document from a string
- fdf_open -- Open a FDF document
- fdf_remove_item -- Sets target frame for form
- fdf_save_string -- Returns the FDF document as a string
- fdf_save -- Save a FDF document
- fdf_set_ap -- Set the appearance of a field
- fdf_set_encoding -- Sets FDF character encoding
- fdf_set_file -- Set PDF document to display FDF data in
- fdf_set_flags -- Sets a flag of a field
- fdf_set_javascript_action -- Sets an javascript action of a field
- fdf_set_on_import_javascript -- Adds javascript code to be executed when Acrobat opens the FDF
- fdf_set_opt -- Sets an option of a field
- fdf_set_status -- Set the value of the /STATUS key
- fdf_set_submit_form_action -- Sets a submit form action of a field
- fdf_set_target_frame -- Set target frame for form display
- fdf_set_value -- Set the value of a field
- fdf_set_version -- Sets version number for a FDF file
- XXXVII. filePro Functions
- Содержание
- filepro_fieldcount -- Find out how many fields are in a filePro database
- filepro_fieldname -- Gets the name of a field
- filepro_fieldtype -- Gets the type of a field
- filepro_fieldwidth -- Gets the width of a field
- filepro_retrieve -- Retrieves data from a filePro database
- filepro_rowcount -- Find out how many rows are in a filePro database
- filepro -- Read and verify the map file
- XXXVIII. Функции для работы с файловой системой
- Содержание
- basename -- Возвращает имя файла из указанного пути
- chgrp -- Изменяет группу владельцев файла
- chmod -- Изменяет режим доступа к файлу или каталогу
- chown -- Изменяет владельца файла
- clearstatcache -- Очищает кэш состояния файлов
- copy -- Копирует файл
- delete -- См.описание функции unlink() или unset()
- dirname -- Возвращает имя каталога из указанного пути
- disk_free_space -- Получить размер доступного пространства в каталоге
- disk_total_space -- Возвращает объем каталога
- diskfreespace -- Псевдоним функции disk_free_space()
- fclose -- Закрывает дескриптор файла
- feof -- Проверяет, достигнут ли конец файла
- fflush -- Сброс буфера вывода в файл
- fgetc -- Считывает символ из файла
- fgetcsv -- Читает строку из файла и производит разбор данных CSV
- fgets -- Читает строку из файла
- fgetss -- Прочитать строку из файла и отбросить HTML-теги
- file_exists -- Проверить наличие указанного файла или каталога
- file_get_contents -- Получить содержимое файла в виде одной строки
- file_put_contents -- Записать строку в файл
- file -- Читает содержимое файла и помещает его в массив
- fileatime -- Получить время последнего доступа к файлу
- filectime -- Получить время последнего изменения i-узла
- filegroup -- Получить идентификатор группы файла
- fileinode -- Получить номер inode файла
- filemtime -- Получить время последнего изменения файла
- fileowner -- Получить идентификатор владельца файла
- fileperms -- Получить информацию о правах на файл
- filesize -- Получить размер файла
- filetype -- Получить тип файла
- flock -- Портируемое рекомендательное запирание файлов
- fnmatch -- Совпадает ли имя файла с шаблоном
- fopen -- Открывает файл или URL
- fpassthru -- Выводит все оставшиеся данные из файлового указателя
- fputcsv --
Форматирует строку в виде CSV и записывает её в файловый указатель
- fputs -- Псевдоним функции fwrite()
- fread -- Бинарно-безопасное чтение файла
- fscanf -- Обрабатывает данные из файла в соответствии с форматом
- fseek -- Устанавливает смещение в файловом указателе
- fstat -- Получает информацию о файле используя открытый файловый указатель
- ftell -- Сообщает текущее смещение чтения/записи файла
- ftruncate -- Урезает файл до указанной длинны
- fwrite -- Бинарно-безопасная запись в файл
- glob -- Находит файловые пути, совпадающие с шаблоном
- is_dir -- Определает, является ли файл директорией
- is_executable -- Определяет, является ли файл исполняемым
- is_file -- Определяет, является ли файл обычным файлом
- is_link -- Определяет, является ли файл символической ссылкой
- is_readable -- Определяет, доступен ли файл для чтения
- is_uploaded_file -- Определяет, был ли файл загружен при помощи HTTP POST
- is_writable -- Определяет, доступен ли файл для записи
- is_writeable -- Псевдоним функции is_writable()
- link -- Создаёт жёсткую ссылку
- linkinfo -- Получает информацию о ссылке
- lstat -- Получает информацию о файле или символической ссылке
- mkdir -- Создаёт директорию
- move_uploaded_file -- Перемещает загруженный файл в новое место
- parse_ini_file -- Обрабатывает конфигурационный файл
- pathinfo -- Возвращает информацию о пути к файлу
- pclose -- Закрывает файловый указатель процесса
- popen -- Открывает файловый указатель процесса
- readfile -- Выводит файл
- readlink -- Возвращает файл, на который указывает символическая ссылка
- realpath -- Возвращает канонизированный абсолютный путь к файлу
- rename -- Переименовывает файл или директорию
- rewind -- Сбрасывает курсор у файлового указателя
- rmdir -- Удаляет директорию
- set_file_buffer -- Псевдоним функции stream_set_write_buffer()
- stat -- Получает информацию о файле
- symlink -- Создаёт символическую ссылку
- tempnam -- Создаёт файл с уникальным именем
- tmpfile -- Создаёт временный файл
- touch -- Устанавливает время доступа и модификации файла
- umask -- Изменяет текущую umask
- unlink -- Удаляет файл
- XXXIX. Firebird/InterBase Functions
- Содержание
- ibase_add_user --
Add a user to a security database (only for IB6 or later)
- ibase_affected_rows --
Return the number of rows that were affected by the previous query
- ibase_backup --
Initiates a backup task in the service manager and returns immediately
- ibase_blob_add --
Add data into a newly created blob
- ibase_blob_cancel --
Cancel creating blob
- ibase_blob_close --
Close blob
- ibase_blob_create --
Create a new blob for adding data
- ibase_blob_echo --
Output blob contents to browser
- ibase_blob_get --
Get len bytes data from open blob
- ibase_blob_import --
Create blob, copy file in it, and close it
- ibase_blob_info --
Return blob length and other useful info
- ibase_blob_open --
Open blob for retrieving data parts
- ibase_close --
Close a connection to an InterBase database
- ibase_commit_ret -- Commit a transaction without closing it
- ibase_commit -- Commit a transaction
- ibase_connect --
Open a connection to an InterBase database
- ibase_db_info --
Request statistics about a database
- ibase_delete_user --
Delete a user from a security database (only for IB6 or later)
- ibase_drop_db --
Drops a database
- ibase_errcode --
Return an error code
- ibase_errmsg --
Return error messages
- ibase_execute -- Execute a previously prepared query
- ibase_fetch_assoc --
Fetch a result row from a query as an associative array
- ibase_fetch_object -- Get an object from a InterBase database
- ibase_fetch_row -- Fetch a row from an InterBase database
- ibase_field_info --
Get information about a field
- ibase_free_event_handler --
Cancels a registered event handler
- ibase_free_query --
Free memory allocated by a prepared query
- ibase_free_result -- Free a result set
- ibase_gen_id --
Increments the named generator and returns its new value
- ibase_maintain_db --
Execute a maintenance command on the database server
- ibase_modify_user --
Modify a user to a security database (only for IB6 or later)
- ibase_name_result --
Assigns a name to a result set
- ibase_num_fields --
Get the number of fields in a result set
- ibase_num_params --
Return the number of parameters in a prepared query
- ibase_param_info --
Return information about a parameter in a prepared query
- ibase_pconnect --
Open a persistent connection to an InterBase database
- ibase_prepare --
Prepare a query for later binding of parameter placeholders and
execution
- ibase_query -- Execute a query on an InterBase database
- ibase_restore --
Initiates a restore task in the service manager and returns immediately
- ibase_rollback_ret -- Roll back a transaction without closing it
- ibase_rollback -- Roll back a transaction
- ibase_server_info --
Request information about a database server
- ibase_service_attach --
Connect to the service manager
- ibase_service_detach --
Disconnect from the service manager
- ibase_set_event_handler --
Register a callback function to be called when events are posted
- ibase_timefmt --
Sets the format of timestamp, date and time type columns returned from queries
- ibase_trans -- Begin a transaction
- ibase_wait_event --
Wait for an event to be posted by the database
- XL. Firebird/Interbase Functions (PDO_FIREBIRD)
- XLI. FriBiDi Functions
- XLII. FrontBase Functions
- Содержание
- fbsql_affected_rows --
Get number of affected rows in previous FrontBase operation
- fbsql_autocommit -- Enable or disable autocommit
- fbsql_blob_size --
Get the size of a BLOB
- fbsql_change_user --
Change logged in user of the active connection
- fbsql_clob_size --
Get the size of a CLOB
- fbsql_close -- Close FrontBase connection
- fbsql_commit -- Commits a transaction to the database
- fbsql_connect -- Open a connection to a FrontBase Server
- fbsql_create_blob -- Create a BLOB
- fbsql_create_clob -- Create a CLOB
- fbsql_create_db -- Create a FrontBase database
- fbsql_data_seek -- Move internal result pointer
- fbsql_database_password --
Sets or retrieves the password for a FrontBase database
- fbsql_database -- Get or set the database name used with a connection
- fbsql_db_query -- Send a FrontBase query
- fbsql_db_status -- Get the status for a given database
- fbsql_drop_db -- Drop (delete) a FrontBase database
- fbsql_errno --
Returns the numerical value of the error message from previous
FrontBase operation
- fbsql_error --
Returns the text of the error message from previous FrontBase
operation
- fbsql_fetch_array --
Fetch a result row as an associative array, a numeric array, or
both
- fbsql_fetch_assoc --
Fetch a result row as an associative array
- fbsql_fetch_field --
Get column information from a result and return as an object
- fbsql_fetch_lengths --
Get the length of each output in a result
- fbsql_fetch_object -- Fetch a result row as an object
- fbsql_fetch_row -- Get a result row as an enumerated array
- fbsql_field_flags --
Get the flags associated with the specified field in a result
- fbsql_field_len --
Returns the length of the specified field
- fbsql_field_name --
Get the name of the specified field in a result
- fbsql_field_seek --
Set result pointer to a specified field offset
- fbsql_field_table --
Get name of the table the specified field is in
- fbsql_field_type --
Get the type of the specified field in a result
- fbsql_free_result -- Free result memory
- fbsql_get_autostart_info -- No description given yet
- fbsql_hostname -- Get or set the host name used with a connection
- fbsql_insert_id --
Get the id generated from the previous INSERT operation
- fbsql_list_dbs --
List databases available on a FrontBase server
- fbsql_list_fields -- List FrontBase result fields
- fbsql_list_tables -- List tables in a FrontBase database
- fbsql_next_result --
Move the internal result pointer to the next result
- fbsql_num_fields -- Get number of fields in result
- fbsql_num_rows -- Get number of rows in result
- fbsql_password -- Get or set the user password used with a connection
- fbsql_pconnect --
Open a persistent connection to a FrontBase Server
- fbsql_query -- Send a FrontBase query
- fbsql_read_blob -- Read a BLOB from the database
- fbsql_read_clob -- Read a CLOB from the database
- fbsql_result -- Get result data
- fbsql_rollback -- Rollback a transaction to the database
- fbsql_select_db -- Select a FrontBase database
- fbsql_set_lob_mode --
Set the LOB retrieve mode for a FrontBase result set
- fbsql_set_password --
Change the password for a given user
- fbsql_set_transaction --
Set the transaction locking and isolation
- fbsql_start_db -- Start a database on local or remote server
- fbsql_stop_db -- Stop a database on local or remote server
- fbsql_tablename -- Get table name of field
- fbsql_username -- Get or set the host user used with a connection
- fbsql_warnings -- Enable or disable FrontBase warnings
- XLIII. Функции для работы с FTP
- Содержание
- ftp_alloc -- Резервирует место на диске для закачиваемого файла
- ftp_cdup -- Переходит в родительскую директорию
- ftp_chdir -- Изменяет текущую директорию на FTP сервере
- ftp_chmod -- Устанавливает права доступа к файлу
- ftp_close -- Закрывает соединение с FTP сервером
- ftp_connect -- Устанавливает соединение с FTP сервером
- ftp_delete -- Удаляет файл на FTP сервере
- ftp_exec -- Выполняет программу на FTP сервере
- ftp_fget -- Загружает файл с FTP сервера и сохраняет его в предварительно открытом файле
- ftp_fput -- Загружает предварительно открытый файл на FTP сервер
- ftp_get_option -- Получает текущие параметры FTP соединения
- ftp_get -- Загружает файл с FTP сервера
- ftp_login -- Выполняет вход на FTP сервер
- ftp_mdtm -- Возвращает время последней модификации файла
- ftp_mkdir -- Создаёт директорию
- ftp_nb_continue -- Продолжает асинхронную операцию
- ftp_nb_fget -- Скачивает файл с FTP сервера в асинхронном режиме и сохраняет его в предварительно открытом файле
- ftp_nb_fput -- Загружает предварительно открытый файл на FTP сервер в асинхронном режиме
- ftp_nb_get -- Скачивает файл с FTP сервера в асинхронном режиме и сохраняет его в локальный файл
- ftp_nb_put --
Загружает файл на FTP сервер в асинхронном режиме
- ftp_nlist -- Возвращает список файлов в заданной директории
- ftp_pasv -- Включает или выключает пассивный режим
- ftp_put -- Загружает файл на FTP сервер
- ftp_pwd -- Возвращает имя текущей директории
- ftp_quit -- Псевдоним функции ftp_close()
- ftp_raw -- Отправляет произвольную команду FTP серверу
- ftp_rawlist -- Возвращает список файлов в заданной директории
- ftp_rename -- Переименовывает файл на FTP сервере
- ftp_rmdir -- Удаляет директорию
- ftp_set_option -- Устанавливает параметры соединения с FTP сервером
- ftp_site -- Отправляет команду SITE серверу
- ftp_size -- Возвращает размер файла
- ftp_ssl_connect -- Устанавливает соединение с FTP сервером через SSL
- ftp_systype -- Возвращает тип операционной системы FTP сервера
- XLIV. Управление функциями
- Содержание
- call_user_func_array --
Вызывает пользовательскую функцию с массивом параметров
- call_user_func --
Вызывает пользовательскую функцию
- create_function -- Создаёт анонимную (lambda-style) функцию
- func_get_arg -- Возвращает элемент из списка аргументов
- func_get_args --
Возвращает массив аргументов функции
- func_num_args --
Возвращает количество аргументов, переданных функции
- function_exists --
Возвращает TRUE, если данная функция определена
- get_defined_functions --
Возвращает массив всех определённых функций
- register_shutdown_function --
Регистрирует функцию, которая выполняется по завершению работы скрипта
- register_tick_function --
Регистрирует функцию для выполнения при каждом тике
- unregister_tick_function --
Удаляет функцию из списка зарегистрированных для выполнения при каждом
тике
- XLV. Gettext
- Содержание
- bind_textdomain_codeset --
Устанавливает кодировку, в которой будут возвращаться сообщения
- bindtextdomain -- Указать путь к каталогу сообщений
- dcgettext -- Запрашивает сообщение из другого каталога сообщений
- dcngettext -- Версия dcgettext для множественного числа
- dgettext -- Запрашивает сообщение из другого каталога сообщений
- dngettext -- Версия dgettext для множественного числа
- gettext -- Возвращает перевод сообщения
- ngettext -- Версия gettext для множественного числа
- textdomain -- устанавливает каталог сообщений по уммолчанию
- XLVI. GMP Functions
- Содержание
- gmp_abs -- Absolute value
- gmp_add -- Add numbers
- gmp_and -- Logical AND
- gmp_clrbit -- Clear bit
- gmp_cmp -- Compare numbers
- gmp_com -- Calculates one's complement
- gmp_div_q -- Divide numbers
- gmp_div_qr -- Divide numbers and get quotient and remainder
- gmp_div_r -- Remainder of the division of numbers
- gmp_div -- Alias of gmp_div_q()
- gmp_divexact -- Exact division of numbers
- gmp_fact -- Factorial
- gmp_gcd -- Calculate GCD
- gmp_gcdext -- Calculate GCD and multipliers
- gmp_hamdist -- Hamming distance
- gmp_init -- Create GMP number
- gmp_intval -- Convert GMP number to integer
- gmp_invert -- Inverse by modulo
- gmp_jacobi -- Jacobi symbol
- gmp_legendre -- Legendre symbol
- gmp_mod -- Modulo operation
- gmp_mul -- Multiply numbers
- gmp_neg -- Negate number
- gmp_or -- Logical OR
- gmp_perfect_square -- Perfect square check
- gmp_popcount -- Population count
- gmp_pow -- Raise number into power
- gmp_powm -- Raise number into power with modulo
- gmp_prob_prime -- Check if number is "probably prime"
- gmp_random -- Random number
- gmp_scan0 -- Scan for 0
- gmp_scan1 -- Scan for 1
- gmp_setbit -- Set bit
- gmp_sign -- Sign of number
- gmp_sqrt -- Calculate square root
- gmp_sqrtrem --
Square root with remainder
- gmp_strval -- Convert GMP number to string
- gmp_sub -- Subtract numbers
- gmp_xor -- Logical XOR
- XLVII. gnupg Функции
- Содержание
- gnupg_adddecryptkey -- Add a key for decryption
- gnupg_addencryptkey -- Add a key for encryption
- gnupg_addsignkey -- Add a key for signing
- gnupg_cleardecryptkeys -- Removes all keys which were set for decryption before
- gnupg_clearencryptkeys -- Removes all keys which were set for encryption before
- gnupg_clearsignkeys -- Removes all keys which were set for signing before
- gnupg_decrypt -- Decrypts a given text
- gnupg_decryptverify -- Decrypts and verifies a given text
- gnupg_encrypt -- Encrypts a given text
- gnupg_encryptsign -- Encrypts and signs a given text
- gnupg_export -- Exports a key
- gnupg_geterror -- Returns the errortext, if a function fails
- gnupg_getprotocol -- Returns the currently active protocol for all operations
- gnupg_import -- Imports a key
- gnupg_keyinfo -- Returns an array with information about all keys that matches the given pattern
- gnupg_setarmor -- Toggle armored output
- gnupg_seterrormode -- Sets the mode for error_reporting
- gnupg_setsignmode -- Sets the mode for signing
- gnupg_sign -- Signs a given text
- gnupg_verify -- Verifies a signed text
- XLVIII. Net_Gopher
- XLIX. Функции протокола HTTP
- L. Hyperwave Functions
- Содержание
- hw_Array2Objrec -- Convert attributes from object array to object record
- hw_changeobject --
Changes attributes of an object (obsolete)
- hw_Children -- Object ids of children
- hw_ChildrenObj -- Object records of children
- hw_Close -- Closes the Hyperwave connection
- hw_Connect -- Opens a connection
- hw_connection_info --
Prints information about the connection to Hyperwave server
- hw_cp -- Copies objects
- hw_Deleteobject -- Deletes object
- hw_DocByAnchor -- Object id object belonging to anchor
- hw_DocByAnchorObj -- Object record object belonging to anchor
- hw_Document_Attributes -- Object record of hw_document
- hw_Document_BodyTag -- Body tag of hw_document
- hw_Document_Content -- Returns content of hw_document
- hw_Document_SetContent -- Sets/replaces content of hw_document
- hw_Document_Size -- Size of hw_document
- hw_dummy --
Hyperwave dummy function
- hw_EditText -- Retrieve text document
- hw_Error -- Error number
- hw_ErrorMsg -- Returns error message
- hw_Free_Document -- Frees hw_document
- hw_GetAnchors -- Object ids of anchors of document
- hw_GetAnchorsObj -- Object records of anchors of document
- hw_GetAndLock -- Return object record and lock object
- hw_GetChildColl -- Object ids of child collections
- hw_GetChildCollObj -- Object records of child collections
- hw_GetChildDocColl -- Object ids of child documents of collection
- hw_GetChildDocCollObj -- Object records of child documents of collection
- hw_GetObject -- Object record
- hw_GetObjectByQuery -- Search object
- hw_GetObjectByQueryColl -- Search object in collection
- hw_GetObjectByQueryCollObj -- Search object in collection
- hw_GetObjectByQueryObj -- Search object
- hw_GetParents -- Object ids of parents
- hw_GetParentsObj -- Object records of parents
- hw_getrellink --
Get link from source to dest relative to rootid
- hw_GetRemote -- Gets a remote document
- hw_getremotechildren -- Gets children of remote document
- hw_GetSrcByDestObj -- Returns anchors pointing at object
- hw_GetText -- Retrieve text document
- hw_getusername -- Name of currently logged in user
- hw_Identify -- Identifies as user
- hw_InCollections -- Check if object ids in collections
- hw_Info -- Info about connection
- hw_InsColl -- Insert collection
- hw_InsDoc -- Insert document
- hw_insertanchors --
Inserts only anchors into text
- hw_InsertDocument -- Upload any document
- hw_InsertObject -- Inserts an object record
- hw_mapid -- Maps global id on virtual local id
- hw_Modifyobject -- Modifies object record
- hw_mv -- Moves objects
- hw_New_Document -- Create new document
- hw_objrec2array -- Convert attributes from object record to object array
- hw_Output_Document -- Prints hw_document
- hw_pConnect -- Make a persistent database connection
- hw_PipeDocument -- Retrieve any document
- hw_Root -- Root object id
- hw_setlinkroot --
Set the id to which links are calculated
- hw_stat --
Returns status string
- hw_Unlock -- Unlock object
- hw_Who -- List of currently logged in users
- LI. Hyperwave API Functions
- Содержание
- hw_api_attribute->key -- Returns key of the attribute
- hw_api_attribute->langdepvalue -- Returns value for a given language
- hw_api_attribute->value -- Returns value of the attribute
- hw_api_attribute->values -- Returns all values of the attribute
- hw_api_attribute -- Creates instance of class hw_api_attribute
- hw_api->checkin -- Checks in an object
- hw_api->checkout -- Checks out an object
- hw_api->children -- Returns children of an object
- hw_api_content->mimetype -- Returns mimetype
- hw_api_content->read -- Read content
- hw_api->content -- Returns content of an object
- hw_api->copy -- Copies physically
- hw_api->dbstat -- Returns statistics about database server
- hw_api->dcstat -- Returns statistics about document cache server
- hw_api->dstanchors -- Returns a list of all destination anchors
- hw_api->dstofsrcanchor -- Returns destination of a source anchor
- hw_api_error->count -- Returns number of reasons
- hw_api_error->reason -- Returns reason of error
- hw_api->find -- Search for objects
- hw_api->ftstat -- Returns statistics about fulltext server
- hwapi_hgcsp -- Returns object of class hw_api
- hw_api->hwstat -- Returns statistics about Hyperwave server
- hw_api->identify -- Log into Hyperwave Server
- hw_api->info -- Returns information about server configuration
- hw_api->insert -- Inserts a new object
- hw_api->insertanchor -- Inserts a new object of type anchor
- hw_api->insertcollection -- Inserts a new object of type collection
- hw_api->insertdocument -- Inserts a new object of type document
- hw_api->link -- Creates a link to an object
- hw_api->lock -- Locks an object
- hw_api->move -- Moves object between collections
- hw_api_content -- Create new instance of class hw_api_content
- hw_api_object->assign -- Clones object
- hw_api_object->attreditable -- Checks whether an attribute is editable
- hw_api_object->count -- Returns number of attributes
- hw_api_object->insert -- Inserts new attribute
- hw_api_object -- Creates a new instance of class hw_api_object
- hw_api_object->remove -- Removes attribute
- hw_api_object->title -- Returns the title attribute
- hw_api_object->value -- Returns value of attribute
- hw_api->object -- Retrieve attribute information
- hw_api->objectbyanchor -- Returns the object an anchor belongs to
- hw_api->parents -- Returns parents of an object
- hw_api_reason->description -- Returns description of reason
- hw_api_reason->type -- Returns type of reason
- hw_api->remove -- Delete an object
- hw_api->replace -- Replaces an object
- hw_api->setcommittedversion -- Commits version other than last version
- hw_api->srcanchors -- Returns a list of all source anchors
- hw_api->srcsofdst -- Returns source of a destination object
- hw_api->unlock -- Unlocks a locked object
- hw_api->user -- Returns the own user object
- hw_api->userlist -- Returns a list of all logged in users
- LII. IBM DB2, Cloudscape and Apache Derby Functions
- Содержание
- db2_autocommit --
Returns or sets the AUTOCOMMIT state for a database connection
- db2_bind_param --
Binds a PHP variable to an SQL statement parameter
- db2_client_info -- Returns an object with properties that describe the DB2 database client
- db2_close --
Closes a database connection
- db2_column_privileges --
Returns a result set listing the columns and associated privileges for a table
- db2_columns --
Returns a result set listing the columns and associated metadata for a table
- db2_commit --
Commits a transaction
- db2_conn_error --
Returns a string containing the SQLSTATE returned by the last connection attempt
- db2_conn_errormsg --
Returns the last connection error message and SQLCODE value
- db2_connect --
Returns a connection to a database
- db2_cursor_type --
Returns the cursor type used by a statement resource
- db2_exec --
Executes an SQL statement directly
- db2_execute --
Executes a prepared SQL statement
- db2_fetch_array --
Returns an array, indexed by column position, representing a row in a result set
- db2_fetch_assoc --
Returns an array, indexed by column name, representing a row in a result set
- db2_fetch_both --
Returns an array, indexed by both column name and position, representing a row in a result set
- db2_fetch_object --
Returns an object with properties representing columns in the fetched row
- db2_fetch_row --
Sets the result set pointer to the next row or requested row
- db2_field_display_size --
Returns the maximum number of bytes required to display a column
- db2_field_name --
Returns the name of the column in the result set
- db2_field_num --
Returns the position of the named column in a result set
- db2_field_precision --
Returns the precision of the indicated column in a result set
- db2_field_scale --
Returns the scale of the indicated column in a result set
- db2_field_type --
Returns the data type of the indicated column in a result set
- db2_field_width --
Returns the width of the current value of the indicated column in a result set
- db2_foreign_keys --
Returns a result set listing the foreign keys for a table
- db2_free_result --
Frees resources associated with a result set
- db2_free_stmt --
Frees resources associated with the indicated statement resource
- db2_next_result --
Requests the next result set from a stored procedure
- db2_num_fields --
Returns the number of fields contained in a result set
- db2_num_rows --
Returns the number of rows affected by an SQL statement
- db2_pconnect --
Returns a persistent connection to a database
- db2_prepare --
Prepares an SQL statement to be executed
- db2_primary_keys --
Returns a result set listing primary keys for a table
- db2_procedure_columns --
Returns a result set listing stored procedure parameters
- db2_procedures --
Returns a result set listing the stored procedures registered in a database
- db2_result --
Returns a single column from a row in the result set
- db2_rollback --
Rolls back a transaction
- db2_server_info -- Returns an object with properties that describe the DB2 database server
- db2_special_columns --
Returns a result set listing the unique row identifier columns for a table
- db2_statistics --
Returns a result set listing the index and statistics for a table
- db2_stmt_error --
Returns a string containing the SQLSTATE returned by an SQL statement
- db2_stmt_errormsg --
Returns a string containing the last SQL statement error message
- db2_table_privileges --
Returns a result set listing the tables and associated privileges in a database
- db2_tables --
Returns a result set listing the tables and associated metadata in a database
- LIII. ICAP Functions [deprecated]
- Содержание
- icap_close -- Close an ICAP stream
- icap_create_calendar --
Create a new calendar
- icap_delete_calendar --
Delete a calendar
- icap_delete_event -- Delete an event from an ICAP calendar
- icap_fetch_event -- Fetches an event from the calendar stream/
- icap_list_alarms --
Return a list of events that has an alarm triggered at the given
datetime
- icap_list_events --
Return a list of events between two given datetimes
- icap_open -- Opens up an ICAP connection
- icap_rename_calendar --
Rename a calendar
- icap_reopen --
Reopen ICAP stream to new calendar
- icap_snooze -- Snooze an alarm
- icap_store_event -- Store an event into an ICAP calendar
- LIV. Функции iconv
- Содержание
- iconv_get_encoding -- Возвращает значение внутренних переменных расширения
- iconv_mime_decode_headers --
Декодирует несколько полей заголовка MIME
- iconv_mime_decode --
Decodes a MIME header field
- iconv_mime_encode --
Composes a MIME header field
- iconv_set_encoding -- Устанавливает значение одной из внутренних переменных
- iconv_strlen --
Возвращает количество символов в строке
- iconv_strpos --
Возвращает позицию первого вхождения подстроки
- iconv_strrpos --
Возвращает позицию последнего вхождения символа
- iconv_substr --
Возвращает подстроку
- iconv -- Преобразовывает символы строки в другую кодировку
- ob_iconv_handler -- Convert character encoding as output buffer handler
- LV. ID3 Functions
- Содержание
- id3_get_frame_long_name -- Get the long name of an ID3v2 frame
- id3_get_frame_short_name -- Get the short name of an ID3v2 frame
- id3_get_genre_id -- Get the id for a genre
- id3_get_genre_list -- Get all possible genre values
- id3_get_genre_name -- Get the name for a genre id
- id3_get_tag -- Get all information stored in an ID3 tag
- id3_get_version -- Get version of an ID3 tag
- id3_remove_tag -- Remove an existing ID3 tag
- id3_set_tag -- Update information stored in an ID3 tag
- LVI. IIS Administration Functions
- Содержание
- iis_add_server -- Creates a new virtual web server
- iis_get_dir_security -- Gets Directory Security
- iis_get_script_map -- Gets script mapping on a virtual directory for a specific extension
- iis_get_server_by_comment -- Return the instance number associated with the Comment
- iis_get_server_by_path -- Return the instance number associated with the Path
- iis_get_server_rights -- Gets server rights
- iis_get_service_state -- Returns the state for the service defined by ServiceId
- iis_remove_server -- Removes the virtual web server indicated by ServerInstance
- iis_set_app_settings -- Creates application scope for a virtual directory
- iis_set_dir_security -- Sets Directory Security
- iis_set_script_map -- Sets script mapping on a virtual directory
- iis_set_server_rights -- Sets server rights
- iis_start_server -- Starts the virtual web server
- iis_start_service -- Starts the service defined by ServiceId
- iis_stop_server -- Stops the virtual web server
- iis_stop_service -- Stops the service defined by ServiceId
- LVII. Image Functions
- Содержание
- gd_info -- Retrieve information about the currently installed GD library
- getimagesize -- Get the size of an image
- image_type_to_extension --
Get file extension for image type
- image_type_to_mime_type -- Get Mime-Type for image-type returned by getimagesize,
exif_read_data, exif_thumbnail, exif_imagetype
- image2wbmp -- Output image to browser or file
- imagealphablending -- Set the blending mode for an image
- imageantialias --
Should antialias functions be used or not
- imagearc -- Draw a partial ellipse
- imagechar -- Draw a character horizontally
- imagecharup -- Draw a character vertically
- imagecolorallocate -- Allocate a color for an image
- imagecolorallocatealpha -- Allocate a color for an image
- imagecolorat -- Get the index of the color of a pixel
- imagecolorclosest -- Get the index of the closest color to the specified color
- imagecolorclosestalpha -- Get the index of the closest color to the specified color + alpha
- imagecolorclosesthwb --
Get the index of the color which has the hue, white and blackness nearest to the given color
- imagecolordeallocate -- De-allocate a color for an image
- imagecolorexact -- Get the index of the specified color
- imagecolorexactalpha -- Get the index of the specified color + alpha
- imagecolormatch --
Makes the colors of the palette version of an image more closely match
the true color version
- imagecolorresolve --
Get the index of the specified color or its closest possible
alternative
- imagecolorresolvealpha --
Get the index of the specified color + alpha or its closest possible
alternative
- imagecolorset -- Set the color for the specified palette index
- imagecolorsforindex -- Get the colors for an index
- imagecolorstotal -- Find out the number of colors in an image's palette
- imagecolortransparent -- Define a color as transparent
- imageconvolution --
Apply a 3x3 convolution matrix, using coefficient div and offset
- imagecopy -- Copy part of an image
- imagecopymerge -- Copy and merge part of an image
- imagecopymergegray -- Copy and merge part of an image with gray scale
- imagecopyresampled -- Copy and resize part of an image with resampling
- imagecopyresized -- Copy and resize part of an image
- imagecreate -- Create a new palette based image
- imagecreatefromgd2 -- Create a new image from GD2 file or URL
- imagecreatefromgd2part -- Create a new image from a given part of GD2 file or URL
- imagecreatefromgd -- Create a new image from GD file or URL
- imagecreatefromgif -- Create a new image from file or URL
- imagecreatefromjpeg -- Create a new image from file or URL
- imagecreatefrompng -- Create a new image from file or URL
- imagecreatefromstring -- Create a new image from the image stream in the string
- imagecreatefromwbmp -- Create a new image from file or URL
- imagecreatefromxbm -- Create a new image from file or URL
- imagecreatefromxpm -- Create a new image from file or URL
- imagecreatetruecolor -- Create a new true color image
- imagedashedline -- Draw a dashed line
- imagedestroy -- Destroy an image
- imageellipse -- Draw an ellipse
- imagefill -- Flood fill
- imagefilledarc -- Draw a partial ellipse and fill it
- imagefilledellipse -- Draw a filled ellipse
- imagefilledpolygon -- Draw a filled polygon
- imagefilledrectangle -- Draw a filled rectangle
- imagefilltoborder -- Flood fill to specific color
- imagefilter --
Applies a filter to an image
- imagefontheight -- Get font height
- imagefontwidth -- Get font width
- imageftbbox -- Give the bounding box of a text using fonts via freetype2
- imagefttext -- Write text to the image using fonts using FreeType 2
- imagegammacorrect -- Apply a gamma correction to a GD image
- imagegd2 -- Output GD2 image to browser or file
- imagegd -- Output GD image to browser or file
- imagegif -- Output image to browser or file
- imageinterlace -- Enable or disable interlace
- imageistruecolor -- Finds whether an image is a truecolor image
- imagejpeg -- Output image to browser or file
- imagelayereffect --
Set the alpha blending flag to use the bundled libgd layering effects
- imageline -- Draw a line
- imageloadfont -- Load a new font
- imagepalettecopy -- Copy the palette from one image to another
- imagepng -- Output a PNG image to either the browser or a file
- imagepolygon -- Draw a polygon
- imagepsbbox --
Give the bounding box of a text rectangle using PostScript Type1
fonts
- imagepscopyfont --
Make a copy of an already loaded font for further modification
- imagepsencodefont -- Change the character encoding vector of a font
- imagepsextendfont -- Extend or condense a font
- imagepsfreefont -- Free memory used by a PostScript Type 1 font
- imagepsloadfont -- Load a PostScript Type 1 font from file
- imagepsslantfont -- Slant a font
- imagepstext -- To draw a text string over an image using PostScript Type1 fonts
- imagerectangle -- Draw a rectangle
- imagerotate -- Rotate an image with a given angle
- imagesavealpha --
Set the flag to save full alpha channel information (as opposed to
single-color transparency) when saving PNG images
- imagesetbrush -- Set the brush image for line drawing
- imagesetpixel -- Set a single pixel
- imagesetstyle -- Set the style for line drawing
- imagesetthickness -- Set the thickness for line drawing
- imagesettile -- Set the tile image for filling
- imagestring -- Draw a string horizontally
- imagestringup -- Draw a string vertically
- imagesx -- Get image width
- imagesy -- Get image height
- imagetruecolortopalette -- Convert a true color image to a palette image
- imagettfbbox -- Give the bounding box of a text using TrueType fonts
- imagettftext -- Write text to the image using TrueType fonts
- imagetypes -- Return the image types supported by this PHP build
- imagewbmp -- Output image to browser or file
- imagexbm --
Output XBM image to browser or file
- iptcembed -- Embed binary IPTC data into a JPEG image
- iptcparse --
Parse a binary IPTC http://www.iptc.org/
block into single tags.
- jpeg2wbmp -- Convert JPEG image file to WBMP image file
- png2wbmp -- Convert PNG image file to WBMP image file
- LVIII. IMAP, POP3 and NNTP Functions
- Содержание
- imap_8bit --
Convert an 8bit string to a quoted-printable string
- imap_alerts --
This function returns all IMAP alert messages (if any) that have
occurred during this page request or since the alert stack was
reset
- imap_append --
Append a string message to a specified mailbox
- imap_base64 -- Decode BASE64 encoded text
- imap_binary --
Convert an 8bit string to a base64 string
- imap_body -- Read the message body
- imap_bodystruct --
Read the structure of a specified body section of a specific message
- imap_check -- Check current mailbox
- imap_clearflag_full -- Clears flags on messages
- imap_close -- Close an IMAP stream
- imap_createmailbox -- Create a new mailbox
- imap_delete --
Mark a message for deletion from current mailbox
- imap_deletemailbox -- Delete a mailbox
- imap_errors --
This function returns all of the IMAP errors (if any) that have
occurred during this page request or since the error stack was
reset
- imap_expunge -- Delete all messages marked for deletion
- imap_fetch_overview --
Read an overview of the information in the headers of the given message
- imap_fetchbody --
Fetch a particular section of the body of the message
- imap_fetchheader -- Returns header for a message
- imap_fetchstructure --
Read the structure of a particular message
- imap_get_quota --
Retrieve the quota level settings, and usage statics per mailbox
- imap_get_quotaroot --
Retrieve the quota settings per user
- imap_getacl --
Gets the ACL for a given mailbox
- imap_getmailboxes --
Read the list of mailboxes, returning detailed information on
each one
- imap_getsubscribed -- List all the subscribed mailboxes
- imap_header -- Alias of imap_headerinfo()
- imap_headerinfo -- Read the header of the message
- imap_headers --
Returns headers for all messages in a mailbox
- imap_last_error --
This function returns the last IMAP error (if any) that occurred
during this page request
- imap_list -- Read the list of mailboxes
- imap_listmailbox -- Alias of imap_list()
- imap_listscan --
Read the list of mailboxes, takes a string to search for in the
text of the mailbox
- imap_listsubscribed -- Alias of imap_lsub()
- imap_lsub -- List all the subscribed mailboxes
- imap_mail_compose --
Create a MIME message based on given envelope and body sections
- imap_mail_copy -- Copy specified messages to a mailbox
- imap_mail_move -- Move specified messages to a mailbox
- imap_mail --
Send an email message
- imap_mailboxmsginfo -- Get information about the current mailbox
- imap_mime_header_decode -- Decode MIME header elements
- imap_msgno --
This function returns the message sequence number for the given
UID
- imap_num_msg --
Gives the number of messages in the current mailbox
- imap_num_recent -- Gives the number of recent messages in current
mailbox
- imap_open -- Open an IMAP stream to a mailbox
- imap_ping -- Check if the IMAP stream is still active
- imap_qprint -- Convert a quoted-printable string to an 8 bit
string
- imap_renamemailbox -- Rename an old mailbox to new mailbox
- imap_reopen -- Reopen IMAP stream to new mailbox
- imap_rfc822_parse_adrlist -- Parses an address string
- imap_rfc822_parse_headers -- Parse mail headers from a string
- imap_rfc822_write_address --
Returns a properly formatted email address given the mailbox,
host, and personal info
- imap_scanmailbox -- Alias of imap_listscan()
- imap_search --
This function returns an array of messages matching the given
search criteria
- imap_set_quota -- Sets a quota for a given mailbox
- imap_setacl --
Sets the ACL for a giving mailbox
- imap_setflag_full -- Sets flags on messages
- imap_sort -- Sort an array of message headers
- imap_status --
This function returns status information on a mailbox other than
the current one
- imap_subscribe -- Subscribe to a mailbox
- imap_thread --
Returns a tree of threaded message
- imap_timeout --
Set or fetch imap timeout
- imap_uid --
This function returns the UID for the given message sequence
number
- imap_undelete --
Unmark the message which is marked deleted
- imap_unsubscribe -- Unsubscribe from a mailbox
- imap_utf7_decode --
Decodes a modified UTF-7 encoded string
- imap_utf7_encode --
Converts ISO-8859-1 string to modified UTF-7 text
- imap_utf8 --
Converts MIME-encoded text to UTF-8
- LIX. Informix Functions
- Содержание
- ifx_affected_rows -- Get number of rows affected by a query
- ifx_blobinfile_mode -- Set the default blob mode for all select queries
- ifx_byteasvarchar -- Set the default byte mode
- ifx_close -- Close Informix connection
- ifx_connect -- Open Informix server connection
- ifx_copy_blob -- Duplicates the given blob object
- ifx_create_blob -- Creates an blob object
- ifx_create_char -- Creates an char object
- ifx_do --
Execute a previously prepared SQL-statement
- ifx_error -- Returns error code of last Informix call
- ifx_errormsg -- Returns error message of last Informix call
- ifx_fetch_row -- Get row as enumerated array
- ifx_fieldproperties -- List of SQL fieldproperties
- ifx_fieldtypes -- List of Informix SQL fields
- ifx_free_blob -- Deletes the blob object
- ifx_free_char -- Deletes the char object
- ifx_free_result -- Releases resources for the query
- ifx_get_blob -- Return the content of a blob object
- ifx_get_char -- Return the content of the char object
- ifx_getsqlca --
Get the contents of sqlca.sqlerrd[0..5] after a query
- ifx_htmltbl_result --
Formats all rows of a query into a HTML table
- ifx_nullformat --
Sets the default return value on a fetch row
- ifx_num_fields -- Returns the number of columns in the query
- ifx_num_rows -- Count the rows already fetched from a query
- ifx_pconnect -- Open persistent Informix connection
- ifx_prepare -- Prepare an SQL-statement for execution
- ifx_query -- Send Informix query
- ifx_textasvarchar -- Set the default text mode
- ifx_update_blob -- Updates the content of the blob object
- ifx_update_char -- Updates the content of the char object
- ifxus_close_slob -- Deletes the slob object
- ifxus_create_slob -- Creates an slob object and opens it
- ifxus_free_slob -- Deletes the slob object
- ifxus_open_slob -- Opens an slob object
- ifxus_read_slob -- Reads nbytes of the slob object
- ifxus_seek_slob -- Sets the current file or seek position
- ifxus_tell_slob -- Returns the current file or seek position
- ifxus_write_slob -- Writes a string into the slob object
- LX. Ingres II Functions
- Содержание
- ingres_autocommit -- Switch autocommit on or off
- ingres_close -- Close an Ingres II database connection
- ingres_commit -- Commit a transaction
- ingres_connect --
Open a connection to an Ingres II database
- ingres_cursor -- Gets a cursor name for a given link resource
- ingres_errno -- Gets the last ingres error number generated
- ingres_error -- Gets a meaningful error message for the last error generated
- ingres_errsqlstate -- Gets the last SQLSTATE error code generated
- ingres_fetch_array -- Fetch a row of result into an array
- ingres_fetch_object -- Fetch a row of result into an object
- ingres_fetch_row --
Fetch a row of result into an enumerated array
- ingres_field_length -- Get the length of a field
- ingres_field_name -- Get the name of a field in a query result
- ingres_field_nullable -- Test if a field is nullable
- ingres_field_precision -- Get the precision of a field
- ingres_field_scale -- Get the scale of a field
- ingres_field_type --
Get the type of a field in a query result
- ingres_num_fields --
Get the number of fields returned by the last query
- ingres_num_rows --
Get the number of rows affected or returned by the last query
- ingres_pconnect --
Open a persistent connection to an Ingres II database
- ingres_query -- Send a SQL query to Ingres II
- ingres_rollback -- Roll back a transaction
- LXI. IRC Gateway Functions
- Содержание
- ircg_channel_mode --
Set channel mode flags for user
- ircg_disconnect --
Close connection to server
- ircg_eval_ecmascript_params -- Decodes a list of JS-encoded parameters
- ircg_fetch_error_msg --
Returns the error from previous IRCG operation
- ircg_get_username --
Get username for connection
- ircg_html_encode --
Encodes HTML preserving output
- ircg_ignore_add --
Add a user to your ignore list on a server
- ircg_ignore_del --
Remove a user from your ignore list on a server
- ircg_invite -- Invites nickname to channel
- ircg_is_conn_alive --
Check connection status
- ircg_join --
Join a channel on a connected server
- ircg_kick --
Kick a user out of a channel on server
- ircg_list -- List topic/user count of channel(s)
- ircg_lookup_format_messages --
Check for the existence of a format message set
- ircg_lusers -- IRC network statistics
- ircg_msg --
Send message to channel or user on server
- ircg_names -- Query visible usernames
- ircg_nick --
Change nickname on server
- ircg_nickname_escape --
Encode special characters in nickname to be IRC-compliant
- ircg_nickname_unescape --
Decodes encoded nickname
- ircg_notice --
Send a notice to a user on server
- ircg_oper -- Elevates privileges to IRC OPER
- ircg_part --
Leave a channel on server
- ircg_pconnect --
Connect to an IRC server
- ircg_register_format_messages --
Register a format message set
- ircg_set_current --
Set current connection for output
- ircg_set_file --
Set logfile for connection
- ircg_set_on_die --
Set action to be executed when connection dies
- ircg_topic --
Set topic for channel on server
- ircg_who -- Queries server for WHO information
- ircg_whois --
Query server for user information
- LXII. PHP / Java Integration
- LXIII. KADM5
- Содержание
- kadm5_chpass_principal -- Changes the principal's password
- kadm5_create_principal -- Creates a kerberos principal with the given parameters
- kadm5_delete_principal -- Deletes a kerberos principal
- kadm5_destroy -- Closes the connection to the admin server and releases all related resources
- kadm5_flush -- Flush all changes to the Kerberos database, leaving the connection
to the Kerberos admin server open
- kadm5_get_policies -- Gets all policies from the Kerberos database
- kadm5_get_principal -- Gets the principal's entries from the Kerberos database
- kadm5_get_principals -- Gets all principals from the Kerberos database
- kadm5_init_with_password -- Opens a connection to the KADM5 library and initializes any
neccessary state information
- kadm5_modify_principal -- Modifies a kerberos principal with the given parameters
- LXIV. LDAP Functions
- Содержание
- ldap_8859_to_t61 --
Translate 8859 characters to t61 characters
- ldap_add -- Add entries to LDAP directory
- ldap_bind -- Bind to LDAP directory
- ldap_close -- Alias of ldap_unbind()
- ldap_compare -- Compare value of attribute found in entry specified with DN
- ldap_connect -- Connect to an LDAP server
- ldap_count_entries -- Count the number of entries in a search
- ldap_delete -- Delete an entry from a directory
- ldap_dn2ufn -- Convert DN to User Friendly Naming format
- ldap_err2str --
Convert LDAP error number into string error message
- ldap_errno --
Return the LDAP error number of the last LDAP command
- ldap_error --
Return the LDAP error message of the last LDAP command
- ldap_explode_dn -- Splits DN into its component parts
- ldap_first_attribute -- Return first attribute
- ldap_first_entry -- Return first result id
- ldap_first_reference --
Return first reference
- ldap_free_result -- Free result memory
- ldap_get_attributes -- Get attributes from a search result entry
- ldap_get_dn -- Get the DN of a result entry
- ldap_get_entries -- Get all result entries
- ldap_get_option -- Get the current value for given option
- ldap_get_values_len -- Get all binary values from a result entry
- ldap_get_values -- Get all values from a result entry
- ldap_list -- Single-level search
- ldap_mod_add -- Add attribute values to current attributes
- ldap_mod_del -- Delete attribute values from current attributes
- ldap_mod_replace -- Replace attribute values with new ones
- ldap_modify -- Modify an LDAP entry
- ldap_next_attribute -- Get the next attribute in result
- ldap_next_entry -- Get next result entry
- ldap_next_reference --
Get next reference
- ldap_parse_reference --
Extract information from reference entry
- ldap_parse_result --
Extract information from result
- ldap_read -- Read an entry
- ldap_rename -- Modify the name of an entry
- ldap_sasl_bind --
Bind to LDAP directory using SASL
- ldap_search -- Search LDAP tree
- ldap_set_option -- Set the value of the given option
- ldap_set_rebind_proc --
Set a callback function to do re-binds on referral chasing
- ldap_sort --
Sort LDAP result entries
- ldap_start_tls --
Start TLS
- ldap_t61_to_8859 --
Translate t61 characters to 8859 characters
- ldap_unbind -- Unbind from LDAP directory
- LXV. libxml Functions
- LXVI. Lotus Notes Functions
- Содержание
- notes_body -- Open the message msg_number in the specified mailbox on the specified server (leave serv
- notes_copy_db -- Copy a Lotus Notes database
- notes_create_db -- Create a Lotus Notes database
- notes_create_note -- Create a note using form form_name
- notes_drop_db -- Drop a Lotus Notes database
- notes_find_note -- Returns a note id found in database_name
- notes_header_info -- Open the message msg_number in the specified mailbox on the specified server (leave serv
- notes_list_msgs -- Returns the notes from a selected database_name
- notes_mark_read -- Mark a note_id as read for the User user_name
- notes_mark_unread -- Mark a note_id as unread for the User user_name
- notes_nav_create -- Create a navigator name, in database_name
- notes_search -- Find notes that match keywords in database_name
- notes_unread -- Returns the unread note id's for the current User user_name
- notes_version -- Get the version Lotus Notes
- LXVII. LZF Functions
- LXVIII. Mail Functions
- LXIX. mailparse Functions
- Содержание
- mailparse_determine_best_xfer_encoding --
Figures out the best way of encoding the content read from the
file pointer fp, which must be seek-able
- mailparse_msg_create -- Returns a handle that can be used to parse a message
- mailparse_msg_extract_part_file -- Extracts/decodes a message section, decoding the transfer encoding
- mailparse_msg_extract_part --
Extracts/decodes a message section
- mailparse_msg_free -- Frees a handle allocated by mailparse_msg_create()
- mailparse_msg_get_part_data -- Returns an associative array of info about the message
- mailparse_msg_get_part -- Returns a handle on a given section in a mimemessage
- mailparse_msg_get_structure -- Returns an array of mime section names in the supplied message
- mailparse_msg_parse_file -- Parse file and return a resource representing the structure
- mailparse_msg_parse -- Incrementally parse data into buffer
- mailparse_rfc822_parse_addresses --
Parse addresses and returns a hash containing that data
- mailparse_stream_encode --
Streams data from source file pointer, apply encoding and write
to destfp
- mailparse_uudecode_all --
Scans the data from fp and extract each embedded uuencoded file
- LXX. Математические функции
- Содержание
- abs -- Модуль числа
- acos -- Arc cosine
- acosh -- Inverse hyperbolic cosine
- asin -- Arc sine
- asinh -- Inverse hyperbolic sine
- atan2 -- Arc tangent of two variables
- atan -- Arc tangent
- atanh -- Inverse hyperbolic tangent
- base_convert -- Convert a number between arbitrary bases
- bindec -- Binary to decimal
- ceil -- Округляет дробь в большую сторону
- cos -- Cosine
- cosh -- Hyperbolic cosine
- decbin -- Decimal to binary
- dechex -- Decimal to hexadecimal
- decoct -- Decimal to octal
- deg2rad --
Converts the number in degrees to the radian equivalent
- exp -- Calculates the exponent of e (the
Neperian or Natural logarithm base)
- expm1 --
Returns exp(number) - 1, computed in a way that is accurate even
when the value of number is close to zero
- floor -- Округляет дробь в меньшую сторону
- fmod -- Возвращает дробный остаток от деления
- getrandmax -- Вовзращает максимально возможное случайное число
- hexdec -- Hexadecimal to decimal
- hypot --
Calculate the length of the hypotenuse of a right-angle triangle
- is_finite -- Finds whether a value is a legal finite number
- is_infinite -- Finds whether a value is infinite
- is_nan -- Finds whether a value is not a number
- lcg_value -- Combined linear congruential generator
- log10 -- Base-10 logarithm
- log1p --
Returns log(1 + number), computed in a way that is accurate even when
the value of number is close to zero
- log -- Natural logarithm
- max -- Находит наибольшее значение
- min -- Находит наименьшее значение
- mt_getrandmax -- Show largest possible random value
- mt_rand -- Generate a better random value
- mt_srand -- Seed the better random number generator
- octdec -- Octal to decimal
- pi -- Возвращает число Пи
- pow -- Exponential expression
- rad2deg --
Converts the radian number to the equivalent number in degrees
- rand -- Генерирует случайное число
- round -- Округляет число типа float
- sin -- Sine
- sinh -- Hyperbolic sine
- sqrt -- Square root
- srand -- Изменяет начальное число генератора псевдослучайных чисел
- tan -- Tangent
- tanh -- Hyperbolic tangent
- LXXI. MaxDB PHP Extension
- Содержание
- maxdb_affected_rows -- Gets the number of affected rows in a previous MaxDB operation
- maxdb_autocommit -- Turns on or off auto-commiting database modifications
- maxdb_bind_param -- Alias of maxdb_stmt_bind_param()
- maxdb_bind_result -- Alias of maxdb_stmt_bind_result()
- maxdb_change_user -- Changes the user of the specified database connection
- maxdb_character_set_name -- Returns the default character set for the database connection
- maxdb_client_encoding -- Alias of maxdb_character_set_name()
- maxdb_close_long_data -- Alias of maxdb_stmt_close_long_data()
- maxdb_close -- Closes a previously opened database connection
- maxdb_commit -- Commits the current transaction
- maxdb_connect_errno -- Returns the error code from last connect call
- maxdb_connect_error -- Returns a string description of the last connect error
- maxdb_connect -- Open a new connection to the MaxDB server
- maxdb_data_seek -- Adjusts the result pointer to an arbitary row in the result
- maxdb_debug -- Performs debugging operations
- maxdb_disable_reads_from_master -- Disable reads from master
- maxdb_disable_rpl_parse -- Disable RPL parse
- maxdb_dump_debug_info -- Dump debugging information into the log
- maxdb_embedded_connect -- Open a connection to an embedded MaxDB server
- maxdb_enable_reads_from_master -- Enable reads from master
- maxdb_enable_rpl_parse -- Enable RPL parse
- maxdb_errno -- Returns the error code for the most recent function call
- maxdb_error -- Returns a string description of the last error
- maxdb_escape_string -- Alias of maxdb_real_escape_string()
- maxdb_execute -- Alias of maxdb_stmt_execute()
- maxdb_fetch_array -- Fetch a result row as an associative, a numeric array, or both
- maxdb_fetch_assoc -- Fetch a result row as an associative array
- maxdb_fetch_field_direct --
Fetch meta-data for a single field
- maxdb_fetch_field -- Returns the next field in the result set
- maxdb_fetch_fields -- Returns an array of resources representing the fields in a result set
- maxdb_fetch_lengths -- Returns the lengths of the columns of the current row in the result set
- maxdb_fetch_object -- Returns the current row of a result set as an object
- maxdb_fetch_row -- Get a result row as an enumerated array
- maxdb_fetch -- Alias of maxdb_stmt_fetch()
- maxdb_field_count -- Returns the number of columns for the most recent query
- maxdb_field_seek --
Set result pointer to a specified field offset
- maxdb_field_tell --
Get current field offset of a result pointer
- maxdb_free_result -- Frees the memory associated with a result
- maxdb_get_client_info -- Returns the MaxDB client version as a string
- maxdb_get_client_version -- Get MaxDB client info
- maxdb_get_host_info -- Returns a string representing the type of connection used
- maxdb_get_metadata -- Alias of maxdb_stmt_result_metadata()
- maxdb_get_proto_info -- Returns the version of the MaxDB protocol used
- maxdb_get_server_info -- Returns the version of the MaxDB server
- maxdb_get_server_version -- Returns the version of the MaxDB server as an integer
- maxdb_info -- Retrieves information about the most recently executed query
- maxdb_init --
Initializes MaxDB and returns an resource for use with maxdb_real_connect
- maxdb_insert_id -- Returns the auto generated id used in the last query
- maxdb_kill -- Disconnects from a MaxDB server
- maxdb_master_query -- Enforce execution of a query on the master in a master/slave setup
- maxdb_more_results -- Check if there any more query results from a multi query
- maxdb_multi_query -- Performs a query on the database
- maxdb_next_result -- Prepare next result from multi_query
- maxdb_num_fields --
Get the number of fields in a result
- maxdb_num_rows --
Gets the number of rows in a result
- maxdb_options -- Set options
- maxdb_param_count -- Alias of maxdb_stmt_param_count()
- maxdb_ping --
Pings a server connection, or tries to reconnect if the connection has gone down
- maxdb_prepare --
Prepare a SQL statement for execution
- maxdb_query -- Performs a query on the database
- maxdb_real_connect -- Opens a connection to a MaxDB server
- maxdb_real_escape_string --
Escapes special characters in a string for use in a SQL statement,
taking into account the current charset of the connection
- maxdb_real_query -- Execute an SQL query
- maxdb_report -- Enables or disables internal report functions
- maxdb_rollback -- Rolls back current transaction
- maxdb_rpl_parse_enabled -- Check if RPL parse is enabled
- maxdb_rpl_probe -- RPL probe
- maxdb_rpl_query_type -- Returns RPL query type
- maxdb_select_db -- Selects the default database for database queries
- maxdb_send_long_data -- Alias of maxdb_stmt_send_long_data()
- maxdb_send_query -- Send the query and return
- maxdb_server_end -- Shut down the embedded server
- maxdb_server_init -- Initialize embedded server
- maxdb_set_opt -- Alias of maxdb_options()
- maxdb_sqlstate -- Returns the SQLSTATE error from previous MaxDB operation
- maxdb_ssl_set -- Used for establishing secure connections using SSL
- maxdb_stat -- Gets the current system status
- maxdb_stmt_affected_rows -- Returns the total number of rows changed, deleted, or
inserted by the last executed statement
- maxdb_stmt_bind_param -- Binds variables to a prepared statement as parameters
- maxdb_stmt_bind_result -- Binds variables to a prepared statement for result storage
- maxdb_stmt_close_long_data -- Ends a sequence of maxdb_stmt_send_long_data()
- maxdb_stmt_close -- Closes a prepared statement
- maxdb_stmt_data_seek -- Seeks to an arbitray row in statement result set
- maxdb_stmt_errno -- Returns the error code for the most recent statement call
- maxdb_stmt_error -- Returns a string description for last statement error
- maxdb_stmt_execute -- Executes a prepared Query
- maxdb_stmt_fetch --
Fetch results from a prepared statement into the bound variables
- maxdb_stmt_free_result -- Frees stored result memory for the given statement handle
- maxdb_stmt_init --
Initializes a statement and returns an resource for use with maxdb_stmt_prepare
- maxdb_stmt_num_rows -- Return the number of rows in statements result set
- maxdb_stmt_param_count -- Returns the number of parameter for the given statement
- maxdb_stmt_prepare --
Prepare a SQL statement for execution
- maxdb_stmt_reset -- Resets a prepared statement
- maxdb_stmt_result_metadata -- Returns result set metadata from a prepared statement
- maxdb_stmt_send_long_data -- Send data in blocks
- maxdb_stmt_sqlstate -- Returns SQLSTATE error from previous statement operation
- maxdb_stmt_store_result -- Transfers a result set from a prepared statement
- maxdb_store_result -- Transfers a result set from the last query
- maxdb_thread_id -- Returns the thread ID for the current connection
- maxdb_thread_safe -- Returns whether thread safety is given or not
- maxdb_use_result -- Initiate a result set retrieval
- maxdb_warning_count -- Returns the number of warnings from the last query for the given link
- LXXII. MCAL Functions
- Содержание
- mcal_append_event -- Store a new event into an MCAL calendar
- mcal_close -- Close an MCAL stream
- mcal_create_calendar -- Create a new MCAL calendar
- mcal_date_compare -- Compares two dates
- mcal_date_valid --
Returns TRUE if the given year, month, day is a valid date
- mcal_day_of_week --
Returns the day of the week of the given date
- mcal_day_of_year --
Returns the day of the year of the given date
- mcal_days_in_month --
Returns the number of days in a month
- mcal_delete_calendar -- Delete an MCAL calendar
- mcal_delete_event -- Delete an event from an MCAL calendar
- mcal_event_add_attribute --
Adds an attribute and a value to the streams global event structure
- mcal_event_init --
Initializes a streams global event structure
- mcal_event_set_alarm --
Sets the alarm of the streams global event structure
- mcal_event_set_category --
Sets the category of the streams global event structure
- mcal_event_set_class --
Sets the class of the streams global event structure
- mcal_event_set_description --
Sets the description of the streams global event structure
- mcal_event_set_end --
Sets the end date and time of the streams global event structure
- mcal_event_set_recur_daily --
Sets the recurrence of the streams global event structure
- mcal_event_set_recur_monthly_mday --
Sets the recurrence of the streams global event structure
- mcal_event_set_recur_monthly_wday --
Sets the recurrence of the streams global event structure
- mcal_event_set_recur_none --
Sets the recurrence of the streams global event structure
- mcal_event_set_recur_weekly --
Sets the recurrence of the streams global event structure
- mcal_event_set_recur_yearly --
Sets the recurrence of the streams global event structure
- mcal_event_set_start --
Sets the start date and time of the streams global event
structure
- mcal_event_set_title --
Sets the title of the streams global event structure
- mcal_expunge --
Deletes all events marked for being expunged
- mcal_fetch_current_stream_event --
Returns an object containing the current streams event structure
- mcal_fetch_event --
Fetches an event from the calendar stream
- mcal_is_leap_year --
Returns if the given year is a leap year or not
- mcal_list_alarms --
Return a list of events that has an alarm triggered at the given
datetime
- mcal_list_events --
Return a list of IDs for a date or a range of dates
- mcal_next_recurrence -- Returns the next recurrence of the event
- mcal_open -- Opens up an MCAL connection
- mcal_popen -- Opens up a persistent MCAL connection
- mcal_rename_calendar -- Rename an MCAL calendar
- mcal_reopen -- Reopens an MCAL connection
- mcal_snooze -- Turn off an alarm for an event
- mcal_store_event -- Modify an existing event in an MCAL calendar
- mcal_time_valid --
Returns TRUE if the given hour, minutes and seconds is a valid time
- mcal_week_of_year --
Returns the week number of the given date
- LXXIII. Mcrypt Encryption Functions
- Содержание
- mcrypt_cbc -- Encrypt/decrypt data in CBC mode
- mcrypt_cfb -- Encrypt/decrypt data in CFB mode
- mcrypt_create_iv --
Create an initialization vector (IV) from a random source
- mcrypt_decrypt -- Decrypts crypttext with given parameters
- mcrypt_ecb -- Deprecated: Encrypt/decrypt data in ECB mode
- mcrypt_enc_get_algorithms_name -- Returns the name of the opened algorithm
- mcrypt_enc_get_block_size -- Returns the blocksize of the opened algorithm
- mcrypt_enc_get_iv_size -- Returns the size of the IV of the opened algorithm
- mcrypt_enc_get_key_size -- Returns the maximum supported keysize of the opened mode
- mcrypt_enc_get_modes_name -- Returns the name of the opened mode
- mcrypt_enc_get_supported_key_sizes -- Returns an array with the supported keysizes of the opened algorithm
- mcrypt_enc_is_block_algorithm_mode -- Checks whether the encryption of the opened mode works on blocks
- mcrypt_enc_is_block_algorithm -- Checks whether the algorithm of the opened mode is a block algorithm
- mcrypt_enc_is_block_mode -- Checks whether the opened mode outputs blocks
- mcrypt_enc_self_test -- This function runs a self test on the opened module
- mcrypt_encrypt -- Encrypts plaintext with given parameters
- mcrypt_generic_deinit --
This function deinitializes an encryption module
- mcrypt_generic_end -- This function terminates encryption
- mcrypt_generic_init -- This function initializes all buffers needed for encryption
- mcrypt_generic -- This function encrypts data
- mcrypt_get_block_size -- Get the block size of the specified cipher
- mcrypt_get_cipher_name -- Get the name of the specified cipher
- mcrypt_get_iv_size --
Returns the size of the IV belonging to a specific cipher/mode combination
- mcrypt_get_key_size -- Get the key size of the specified cipher
- mcrypt_list_algorithms -- Get an array of all supported ciphers
- mcrypt_list_modes -- Get an array of all supported modes
- mcrypt_module_close --
Close the mcrypt module
- mcrypt_module_get_algo_block_size -- Returns the blocksize of the specified algorithm
- mcrypt_module_get_algo_key_size -- Returns the maximum supported keysize of the opened mode
- mcrypt_module_get_supported_key_sizes -- Returns an array with the supported keysizes of the opened algorithm
- mcrypt_module_is_block_algorithm_mode -- Returns if the specified module is a block algorithm or not
- mcrypt_module_is_block_algorithm -- This function checks whether the specified algorithm is a block algorithm
- mcrypt_module_is_block_mode -- Returns if the specified mode outputs blocks or not
- mcrypt_module_open -- Opens the module of the algorithm and the mode to be used
- mcrypt_module_self_test -- This function runs a self test on the specified module
- mcrypt_ofb -- Encrypt/decrypt data in OFB mode
- mdecrypt_generic -- Decrypt data
- LXXIV. MCVE Payment Functions
- Содержание
- mcve_adduser --
Add an MCVE user using usersetup structure
- mcve_adduserarg --
Add a value to user configuration structure
- mcve_bt --
Get unsettled batch totals
- mcve_checkstatus --
Check to see if a transaction has completed
- mcve_chkpwd --
Verify Password
- mcve_chngpwd --
Change the system administrator's password
- mcve_completeauthorizations --
Number of complete authorizations in queue, returning an array of their identifiers
- mcve_connect --
Establish the connection to MCVE
- mcve_connectionerror --
Get a textual representation of why a connection failed
- mcve_deleteresponse --
Delete specified transaction from MCVE_CONN structure
- mcve_deletetrans --
Delete specified transaction from MCVE_CONN structure
- mcve_deleteusersetup --
Deallocate data associated with usersetup structure
- mcve_deluser --
Delete an MCVE user account
- mcve_destroyconn --
Destroy the connection and MCVE_CONN structure
- mcve_destroyengine --
Free memory associated with IP/SSL connectivity
- mcve_disableuser --
Disable an active MCVE user account
- mcve_edituser --
Edit MCVE user using usersetup structure
- mcve_enableuser --
Enable an inactive MCVE user account
- mcve_force --
Send a FORCE to MCVE (typically, a phone-authorization)
- mcve_getcell --
Get a specific cell from a comma delimited response by column name
- mcve_getcellbynum --
Get a specific cell from a comma delimited response by column number
- mcve_getcommadelimited --
Get the RAW comma delimited data returned from MCVE
- mcve_getheader --
Get the name of the column in a comma-delimited response
- mcve_getuserarg --
Grab a value from usersetup structure
- mcve_getuserparam --
Get a user response parameter
- mcve_gft --
Audit MCVE for Failed transactions
- mcve_gl --
Audit MCVE for settled transactions
- mcve_gut --
Audit MCVE for Unsettled Transactions
- mcve_initconn --
Create and initialize an MCVE_CONN structure
- mcve_initengine --
Ready the client for IP/SSL Communication
- mcve_initusersetup --
Initialize structure to store user data
- mcve_iscommadelimited --
Checks to see if response is comma delimited
- mcve_liststats --
List statistics for all users on MCVE system
- mcve_listusers --
List all users on MCVE system
- mcve_maxconntimeout --
The maximum amount of time the API will attempt a connection to MCVE
- mcve_monitor --
Perform communication with MCVE (send/receive data) Non-blocking
- mcve_numcolumns --
Number of columns returned in a comma delimited response
- mcve_numrows --
Number of rows returned in a comma delimited response
- mcve_override --
Send an OVERRIDE to MCVE
- mcve_parsecommadelimited --
Parse the comma delimited response so mcve_getcell, etc will work
- mcve_ping --
Send a ping request to MCVE
- mcve_preauth --
Send a PREAUTHORIZATION to MCVE
- mcve_preauthcompletion --
Complete a PREAUTHORIZATION, ready it for settlement
- mcve_qc --
Audit MCVE for a list of transactions in the outgoing queue
- mcve_responseparam --
Get a custom response parameter
- mcve_return --
Issue a RETURN or CREDIT to MCVE
- mcve_returncode --
Grab the exact return code from the transaction
- mcve_returnstatus --
Check to see if the transaction was successful
- mcve_sale --
Send a SALE to MCVE
- mcve_setblocking --
Set blocking/non-blocking mode for connection
- mcve_setdropfile --
Set the connection method to Drop-File
- mcve_setip --
Set the connection method to IP
- mcve_setssl_files --
Set certificate key files and certificates if server requires client certificate
verification
- mcve_setssl --
Set the connection method to SSL
- mcve_settimeout --
Set maximum transaction time (per trans)
- mcve_settle --
Issue a settlement command to do a batch deposit
- mcve_text_avs --
Get a textual representation of the return_avs
- mcve_text_code --
Get a textual representation of the return_code
- mcve_text_cv --
Get a textual representation of the return_cv
- mcve_transactionauth --
Get the authorization number returned for the transaction (alpha-numeric)
- mcve_transactionavs --
Get the Address Verification return status
- mcve_transactionbatch --
Get the batch number associated with the transaction
- mcve_transactioncv --
Get the CVC2/CVV2/CID return status
- mcve_transactionid --
Get the unique system id for the transaction
- mcve_transactionitem --
Get the ITEM number in the associated batch for this transaction
- mcve_transactionssent --
Check to see if outgoing buffer is clear
- mcve_transactiontext --
Get verbiage (text) return from MCVE or processing institution
- mcve_transinqueue --
Number of transactions in client-queue
- mcve_transnew --
Start a new transaction
- mcve_transparam --
Add a parameter to a transaction
- mcve_transsend --
Finalize and send the transaction
- mcve_ub --
Get a list of all Unsettled batches
- mcve_uwait --
Wait x microsecs
- mcve_verifyconnection --
Set whether or not to PING upon connect to verify connection
- mcve_verifysslcert --
Set whether or not to verify the server ssl certificate
- mcve_void --
VOID a transaction in the settlement queue
- LXXV. Memcache Functions
- Содержание
- Memcache::add -- Add an item to the server
- Memcache::close -- Close memcached server connection
- Memcache::connect -- Open memcached server connection
- memcache_debug -- Turn debug output on/off
- Memcache::decrement -- Decrement item's value
- Memcache::delete -- Delete item from the server
- Memcache::flush -- Flush all existing items at the server
- Memcache::get -- Retrieve item from the server
- Memcache::getStats -- Get statistics of the server
- Memcache::getVersion -- Return version of the server
- Memcache::increment -- Increment item's value
- Memcache::pconnect -- Open memcached server persistent connection
- Memcache::replace -- Replace value of the existing item
- Memcache::set -- Store data at the server
- LXXVI. Mhash Functions
- LXXVII. Mimetype Functions
- LXXVIII. Ming functions for Flash
- Содержание
- ming_setcubicthreshold --
Set cubic threshold (?)
- ming_setscale --
Set scale (?)
- ming_useswfversion --
Use SWF version (?)
- SWFAction -- Creates a new Action
- SWFBitmap->getHeight -- Returns the bitmap's height
- SWFBitmap->getWidth -- Returns the bitmap's width
- SWFBitmap -- Loads Bitmap object
- swfbutton_keypress --
Returns the action flag for keyPress(char)
- SWFbutton->addAction -- Adds an action
- SWFbutton->addShape -- Adds a shape to a button
- SWFbutton->setAction -- Sets the action
- SWFbutton->setdown -- Alias for addShape(shape, SWFBUTTON_DOWN)
- SWFbutton->setHit -- Alias for addShape(shape, SWFBUTTON_HIT)
- SWFbutton->setOver -- Alias for addShape(shape, SWFBUTTON_OVER)
- SWFbutton->setUp -- Alias for addShape(shape, SWFBUTTON_UP)
- SWFbutton -- Creates a new Button
- SWFDisplayItem->addColor -- Adds the given color to this item's color transform
- SWFDisplayItem->move -- Moves object in relative coordinates
- SWFDisplayItem->moveTo -- Moves object in global coordinates
- SWFDisplayItem->multColor -- Multiplies the item's color transform
- SWFDisplayItem->remove -- Removes the object from the movie
- SWFDisplayItem->Rotate -- Rotates in relative coordinates
- SWFDisplayItem->rotateTo -- Rotates the object in global coordinates
- SWFDisplayItem->scale -- Scales the object in relative coordinates
- SWFDisplayItem->scaleTo -- Scales the object in global coordinates
- SWFDisplayItem->setDepth -- Sets z-order
- SWFDisplayItem->setName -- Sets the object's name
- SWFDisplayItem->setRatio -- Sets the object's ratio
- SWFDisplayItem->skewX -- Sets the X-skew
- SWFDisplayItem->skewXTo -- Sets the X-skew
- SWFDisplayItem->skewY -- Sets the Y-skew
- SWFDisplayItem->skewYTo -- Sets the Y-skew
- SWFDisplayItem -- Creates a new displayitem object
- SWFFill->moveTo -- Moves fill origin
- SWFFill->rotateTo -- Sets fill's rotation
- SWFFill->scaleTo -- Sets fill's scale
- SWFFill->skewXTo -- Sets fill x-skew
- SWFFill->skewYTo -- Sets fill y-skew
- SWFFill -- Loads SWFFill object
- swffont->getwidth -- Returns the string's width
- SWFFont -- Loads a font definition
- SWFGradient->addEntry -- Adds an entry to the gradient list
- SWFGradient -- Creates a gradient object
- SWFMorph->getshape1 -- Gets a handle to the starting shape
- SWFMorph->getshape2 -- Gets a handle to the ending shape
- SWFMorph -- Creates a new SWFMorph object
- SWFMovie->add -- Adds any type of data to a movie
- SWFMovie->nextframe -- Moves to the next frame of the animation
- SWFMovie->output -- Dumps your lovingly prepared movie out
- swfmovie->remove -- Removes the object instance from the display list
- SWFMovie->save -- Saves your movie in a file
- SWFMovie->setbackground -- Sets the background color
- SWFMovie->setdimension -- Sets the movie's width and height
- SWFMovie->setframes -- Sets the total number of frames in the animation
- SWFMovie->setrate -- Sets the animation's frame rate
- SWFMovie->streammp3 -- Streams a MP3 file
- SWFMovie -- Creates a new movie object, representing an SWF version 4 movie
- SWFShape->addFill -- Adds a solid fill to the shape
- SWFShape->drawCurve -- Draws a curve (relative)
- SWFShape->drawCurveTo -- Draws a curve
- SWFShape->drawLine -- Draws a line (relative)
- SWFShape->drawLineTo -- Draws a line
- SWFShape->movePen -- Moves the shape's pen (relative)
- SWFShape->movePenTo -- Moves the shape's pen
- SWFShape->setLeftFill -- Sets left rasterizing color
- SWFShape->setLine -- Sets the shape's line style
- SWFShape->setRightFill -- Sets right rasterizing color
- SWFShape -- Creates a new shape object
- swfsprite->add -- Adds an object to a sprite
- SWFSprite->nextframe -- Moves to the next frame of the animation
- SWFSprite->remove -- Removes an object to a sprite
- SWFSprite->setframes -- Sets the total number of frames in the animation
- SWFSprite -- Creates a movie clip (a sprite)
- SWFText->addString -- Draws a string
- SWFText->getWidth -- Computes string's width
- SWFText->moveTo -- Moves the pen
- SWFText->setColor -- Sets the current font color
- SWFText->setFont -- Sets the current font
- SWFText->setHeight -- Sets the current font height
- SWFText->setSpacing -- Sets the current font spacing
- SWFText -- Creates a new SWFText object
- SWFTextField->addstring -- Concatenates the given string to the text field
- SWFTextField->align -- Sets the text field alignment
- SWFTextField->setbounds -- Sets the text field width and height
- SWFTextField->setcolor -- Sets the color of the text field
- SWFTextField->setFont -- Sets the text field font
- SWFTextField->setHeight -- Sets the font height of this text field font
- SWFTextField->setindentation -- Sets the indentation of the first line
- SWFTextField->setLeftMargin -- Sets the left margin width of the text field
- SWFTextField->setLineSpacing -- Sets the line spacing of the text field
- SWFTextField->setMargins -- Sets the margins width of the text field
- SWFTextField->setname -- Sets the variable name
- SWFTextField->setrightMargin -- Sets the right margin width of the text field
- SWFTextField -- Creates a text field object
- LXXIX. Miscellaneous Functions
- Содержание
- connection_aborted -- Returns TRUE if client disconnected
- connection_status -- Returns connection status bitfield
- connection_timeout -- Return TRUE if script timed out
- constant -- Returns the value of a constant
- define -- Defines a named constant
- defined --
Checks whether a given named constant exists
- die -- Equivalent to exit()
- eval -- Evaluate a string as PHP code
- exit -- Output a message and terminate the current script
- get_browser --
Tells what the user's browser is capable of
- __halt_compiler --
Halts the compiler execution
- highlight_file -- Syntax highlighting of a file
- highlight_string -- Syntax highlighting of a string
- ignore_user_abort --
Set whether a client disconnect should abort script execution
- pack -- Pack data into binary string
- php_check_syntax --
Check the PHP syntax of (and execute) the specified file
- php_strip_whitespace --
Return source with stripped comments and whitespace
- show_source -- Alias of highlight_file()
- sleep -- Delay execution
- time_nanosleep --
Delay for a number of seconds and nanoseconds
- time_sleep_until --
Make the script sleep until the specified time
- uniqid -- Generate a unique ID
- unpack -- Unpack data from binary string
- usleep -- Delay execution in microseconds
- LXXX. mnoGoSearch Functions
- Содержание
- udm_add_search_limit -- Add various search limits
- udm_alloc_agent_array -- Allocate mnoGoSearch session
- udm_alloc_agent -- Allocate mnoGoSearch session
- udm_api_version -- Get mnoGoSearch API version
- udm_cat_list -- Get all the categories on the same level with the current one
- udm_cat_path -- Get the path to the current category
- udm_check_charset --
Check if the given charset is known to mnogosearch
- udm_check_stored --
Check connection to stored
- udm_clear_search_limits -- Clear all mnoGoSearch search restrictions
- udm_close_stored --
Close connection to stored
- udm_crc32 --
Return CRC32 checksum of given string
- udm_errno -- Get mnoGoSearch error number
- udm_error -- Get mnoGoSearch error message
- udm_find -- Perform search
- udm_free_agent -- Free mnoGoSearch session
- udm_free_ispell_data -- Free memory allocated for ispell data
- udm_free_res -- Free mnoGoSearch result
- udm_get_doc_count -- Get total number of documents in database
- udm_get_res_field -- Fetch mnoGoSearch result field
- udm_get_res_param -- Get mnoGoSearch result parameters
- udm_hash32 -- Return Hash32 checksum of gived string
- udm_load_ispell_data -- Load ispell data
- udm_open_stored --
Open connection to stored
- udm_set_agent_param -- Set mnoGoSearch agent session parameters
- LXXXI. Microsoft SQL Server Functions
- Содержание
- mssql_bind --
Adds a parameter to a stored procedure or a remote stored procedure
- mssql_close -- Close MS SQL Server connection
- mssql_connect -- Open MS SQL server connection
- mssql_data_seek -- Moves internal row pointer
- mssql_execute --
Executes a stored procedure on a MS SQL server database
- mssql_fetch_array --
Fetch a result row as an associative array, a numeric array, or both
- mssql_fetch_assoc --
Returns an associative array of the current row in the result set specified by result_id
- mssql_fetch_batch --
Returns the next batch of records
- mssql_fetch_field -- Get field information
- mssql_fetch_object -- Fetch row as object
- mssql_fetch_row -- Get row as enumerated array
- mssql_field_length -- Get the length of a field
- mssql_field_name -- Get the name of a field
- mssql_field_seek -- Seeks to the specified field offset
- mssql_field_type -- Gets the type of a field
- mssql_free_result -- Free result memory
- mssql_free_statement -- Free statement memory
- mssql_get_last_message --
Returns the last message from the server
- mssql_guid_string --
Converts a 16 byte binary GUID to a string
- mssql_init --
Initializes a stored procedure or a remote stored procedure
- mssql_min_error_severity -- Sets the lower error severity
- mssql_min_message_severity -- Sets the lower message severity
- mssql_next_result -- Move the internal result pointer to the next result
- mssql_num_fields -- Gets the number of fields in result
- mssql_num_rows -- Gets the number of rows in result
- mssql_pconnect -- Open persistent MS SQL connection
- mssql_query -- Send MS SQL query
- mssql_result -- Get result data
- mssql_rows_affected --
Returns the number of records affected by the query
- mssql_select_db -- Select MS SQL database
- LXXXII. Microsoft SQL Server and Sybase Functions (PDO_DBLIB)
- LXXXIII. Mohawk Software Session Handler Functions
- Содержание
- msession_connect -- Connect to msession server
- msession_count -- Get session count
- msession_create -- Create a session
- msession_destroy -- Destroy a session
- msession_disconnect -- Close connection to msession server
- msession_find -- Find all sessions with name and value
- msession_get_array -- Get array of msession variables
- msession_get_data -- Get data session unstructured data
- msession_get -- Get value from session
- msession_inc -- Increment value in session
- msession_list -- List all sessions
- msession_listvar -- List sessions with variable
- msession_lock -- Lock a session
- msession_plugin -- Call an escape function within the msession personality plugin
- msession_randstr -- Get random string
- msession_set_array -- Set msession variables from an array
- msession_set_data -- Set data session unstructured data
- msession_set -- Set value in session
- msession_timeout -- Set/get session timeout
- msession_uniq -- Get unique id
- msession_unlock -- Unlock a session
- LXXXIV. mSQL Functions
- Содержание
- msql_affected_rows -- Returns number of affected rows
- msql_close -- Close mSQL connection
- msql_connect -- Open mSQL connection
- msql_create_db -- Create mSQL database
- msql_createdb -- Alias of msql_create_db()
- msql_data_seek -- Move internal row pointer
- msql_db_query -- Send mSQL query
- msql_dbname -- Alias of msql_result()
- msql_drop_db -- Drop (delete) mSQL database
- msql_error -- Returns error message of last msql call
- msql_fetch_array -- Fetch row as array
- msql_fetch_field -- Get field information
- msql_fetch_object -- Fetch row as object
- msql_fetch_row -- Get row as enumerated array
- msql_field_flags -- Get field flags
- msql_field_len -- Get field length
- msql_field_name -- Get the name of the specified field in a result
- msql_field_seek -- Set field offset
- msql_field_table -- Get table name for field
- msql_field_type -- Get field type
- msql_fieldflags -- Alias of msql_field_flags()
- msql_fieldlen -- Alias of msql_field_len()
- msql_fieldname -- Alias of msql_field_name()
- msql_fieldtable -- Alias of msql_field_table()
- msql_fieldtype -- Alias of msql_field_type()
- msql_free_result -- Free result memory
- msql_list_dbs -- List mSQL databases on server
- msql_list_fields -- List result fields
- msql_list_tables -- List tables in an mSQL database
- msql_num_fields -- Get number of fields in result
- msql_num_rows -- Get number of rows in result
- msql_numfields -- Alias of msql_num_fields()
- msql_numrows -- Alias of msql_num_rows()
- msql_pconnect -- Open persistent mSQL connection
- msql_query -- Send mSQL query
- msql_regcase -- Alias of sql_regcase()
- msql_result -- Get result data
- msql_select_db -- Select mSQL database
- msql_tablename -- Alias of msql_result()
- msql -- Alias of msql_db_query()
- LXXXV. Multibyte String Functions
- Содержание
- mb_convert_case -- Perform case folding on a string
- mb_convert_encoding -- Convert character encoding
- mb_convert_kana --
Convert "kana" one from another ("zen-kaku", "han-kaku" and more)
- mb_convert_variables -- Convert character code in variable(s)
- mb_decode_mimeheader -- Decode string in MIME header field
- mb_decode_numericentity --
Decode HTML numeric string reference to character
- mb_detect_encoding -- Detect character encoding
- mb_detect_order --
Set/Get character encoding detection order
- mb_encode_mimeheader -- Encode string for MIME header
- mb_encode_numericentity --
Encode character to HTML numeric string reference
- mb_ereg_match --
Regular expression match for multibyte string
- mb_ereg_replace -- Replace regular expression with multibyte support
- mb_ereg_search_getpos --
Returns start point for next regular expression match
- mb_ereg_search_getregs --
Retrieve the result from the last multibyte regular expression
match
- mb_ereg_search_init --
Setup string and regular expression for multibyte regular
expression match
- mb_ereg_search_pos --
Return position and length of matched part of multibyte regular
expression for predefined multibyte string
- mb_ereg_search_regs --
Returns the matched part of multibyte regular expression
- mb_ereg_search_setpos --
Set start point of next regular expression match
- mb_ereg_search --
Multibyte regular expression match for predefined multibyte string
- mb_ereg -- Regular expression match with multibyte support
- mb_eregi_replace --
Replace regular expression with multibyte support
ignoring case
- mb_eregi --
Regular expression match ignoring case with multibyte support
- mb_get_info -- Get internal settings of mbstring
- mb_http_input -- Detect HTTP input character encoding
- mb_http_output -- Set/Get HTTP output character encoding
- mb_internal_encoding --
Set/Get internal character encoding
- mb_language --
Set/Get current language
- mb_list_encodings --
Returns an array of all supported encodings
- mb_output_handler --
Callback function converts character encoding in output buffer
- mb_parse_str --
Parse GET/POST/COOKIE data and set global variable
- mb_preferred_mime_name -- Get MIME charset string
- mb_regex_encoding --
Returns current encoding for multibyte regex as string
- mb_regex_set_options --
Set/Get the default options for mbregex functions
- mb_send_mail --
Send encoded mail
- mb_split -- Split multibyte string using regular expression
- mb_strcut -- Get part of string
- mb_strimwidth -- Get truncated string with specified width
- mb_strlen -- Get string length
- mb_strpos --
Find position of first occurrence of string in a string
- mb_strrpos --
Find position of last occurrence of a string in a string
- mb_strtolower -- Make a string lowercase
- mb_strtoupper -- Make a string uppercase
- mb_strwidth -- Return width of string
- mb_substitute_character -- Set/Get substitution character
- mb_substr_count -- Count the number of substring occurrences
- mb_substr -- Get part of string
- LXXXVI. muscat Functions
- LXXXVII. Функции СУБД MySQL
- Содержание
- mysql_affected_rows -- Возвращает число затронуиых прошлой операцией рядов.
- mysql_change_user --
Изменяет пользователя для указанного соединения.
- mysql_client_encoding -- Возвращает кодировку соединения
- mysql_close -- Закрывает соединение с сервером MySQL
- mysql_connect -- Открывает соединение с сервером MySQL
- mysql_create_db -- Создаёт базу данных MySQL
- mysql_data_seek -- Перемещает внутренний указатель в результате запроса
- mysql_db_name -- Возвращает название базы данных
- mysql_db_query -- Переключается к указанной базе данных и посылает запрос
- mysql_drop_db -- Уничтожает базу данных MySQL
- mysql_errno --
Возвращает численный код ошибки выполнения последней операции с MySQL
- mysql_error --
Возвращает строку ошибки последней операции с MySQL.
- mysql_escape_string --
Экранирует SQL спец-символы для mysql_query.
- mysql_fetch_array --
Обрабатывает ряд результата запроса, возвращая ассоциативный массив,
численный массив или оба.
- mysql_fetch_assoc --
Обрабатывает ряд результата запроса и возвращает ассоциативный массив.
- mysql_fetch_field --
Возвращает информацию о колонке из результата запроса в виде объекта.
- mysql_fetch_lengths --
Возвращает длину каждого поля в результате.
- mysql_fetch_object -- Обрабатывает ряд результата запроса и возвращает объект
- mysql_fetch_row -- Орабатывает ряд результата запроса и возвращает неассоциативный массив.
- mysql_field_flags --
Возвращает флаги указанного поля результата запроса.
- mysql_field_len --
Возвращает длину указанного поля.
- mysql_field_name --
Возвращает название указанной колонки результата запроса.
- mysql_field_seek --
Устанавливает внутренний указатель поля на переданное смещение.
- mysql_field_table --
Возвращает название таблицы, которой принадлежит указанное поле.
- mysql_field_type --
Возвращает тип указанного поля результата запроса.
- mysql_free_result -- Освобождает память от результата запроса
- mysql_get_client_info -- Возвращает данные о MySQL-клиенте
- mysql_get_host_info -- Возвращает информацию о соединении с MySQL
- mysql_get_proto_info -- Возвращает информацию о протоколе MySQL
- mysql_get_server_info -- Возвращает информацию о сервере MySQL
- mysql_info --
Возвращает информацию о последнем запросе
- mysql_insert_id --
Возвращает ID, сгенерированный при последнем INSERT-запросе.
- mysql_list_dbs --
Возвращает список баз данных, доступных на сервере.
- mysql_list_fields -- Возвращает список колонок таблицы
- mysql_list_processes -- Возвращает список процессов MySQL
- mysql_list_tables -- Возвращает список таблиц базы данных MySQL
- mysql_num_fields -- Возвращает количество полей результата запроса
- mysql_num_rows -- Возвращает количество рядов результата запроса
- mysql_pconnect --
Устанавливает постоянное соединение с сервером MySQL.
- mysql_ping -- Проверяет соединение с сервером и пересоединяется при необходимости
- mysql_query -- Посылает запрос MySQL
- mysql_real_escape_string --
Экранирует специальные символы в строках для
использования в выражениях SQL
- mysql_result -- Возвращает данные результата запроса
- mysql_select_db -- Выбирает базу данных MySQL
- mysql_stat -- Возвращает текущий статус сервера
- mysql_tablename -- Возвращает имя таблицы, содержащей указанное поле
- mysql_thread_id -- Возвращает ID текущего потока
- mysql_unbuffered_query --
Посылает MySQL SQL-запрос без авто-обработки результата и её
буфферизации.
- LXXXVIII. MySQL Functions (PDO_MYSQL)
- LXXXIX. MySQL Improved Extension
- Содержание
- mysqli_affected_rows -- Gets the number of affected rows in a previous MySQL operation
- mysqli_autocommit -- Turns on or off auto-commiting database modifications
- mysqli_bind_param -- Alias for mysqli_stmt_bind_param()
- mysqli_bind_result -- Alias for mysqli_stmt_bind_result()
- mysqli_change_user -- Changes the user of the specified database connection
- mysqli_character_set_name -- Returns the default character set for the database connection
- mysqli_client_encoding -- Alias of mysqli_character_set_name()
- mysqli_close -- Closes a previously opened database connection
- mysqli_commit -- Commits the current transaction
- mysqli_connect_errno -- Returns the error code from last connect call
- mysqli_connect_error -- Returns a string description of the last connect error
- mysqli_connect -- Open a new connection to the MySQL server
- mysqli_data_seek -- Adjusts the result pointer to an arbitary row in the result
- mysqli_debug -- Performs debugging operations
- mysqli_disable_reads_from_master -- Disable reads from master
- mysqli_disable_rpl_parse -- Disable RPL parse
- mysqli_dump_debug_info -- Dump debugging information into the log
- mysqli_embedded_connect -- Open a connection to an embedded mysql server
- mysqli_enable_reads_from_master -- Enable reads from master
- mysqli_enable_rpl_parse -- Enable RPL parse
- mysqli_errno -- Returns the error code for the most recent function call
- mysqli_error -- Returns a string description of the last error
- mysqli_escape_string -- Alias of mysqli_real_escape_string()
- mysqli_execute -- Alias for mysqli_stmt_execute()
- mysqli_fetch_array -- Fetch a result row as an associative, a numeric array, or both
- mysqli_fetch_assoc -- Fetch a result row as an associative array
- mysqli_fetch_field_direct --
Fetch meta-data for a single field
- mysqli_fetch_field -- Returns the next field in the result set
- mysqli_fetch_fields -- Returns an array of objects representing the fields in a result set
- mysqli_fetch_lengths -- Returns the lengths of the columns of the current row in the result set
- mysqli_fetch_object -- Returns the current row of a result set as an object
- mysqli_fetch_row -- Get a result row as an enumerated array
- mysqli_fetch -- Alias for mysqli_stmt_fetch()
- mysqli_field_count -- Returns the number of columns for the most recent query
- mysqli_field_seek --
Set result pointer to a specified field offset
- mysqli_field_tell --
Get current field offset of a result pointer
- mysqli_free_result -- Frees the memory associated with a result
- mysqli_get_client_info -- Returns the MySQL client version as a string
- mysqli_get_client_version -- Get MySQL client info
- mysqli_get_host_info -- Returns a string representing the type of connection used
- mysqli_get_metadata -- Alias for mysqli_stmt_result_metadata()
- mysqli_get_proto_info -- Returns the version of the MySQL protocol used
- mysqli_get_server_info -- Returns the version of the MySQL server
- mysqli_get_server_version -- Returns the version of the MySQL server as an integer
- mysqli_info -- Retrieves information about the most recently executed query
- mysqli_init --
Initializes MySQLi and returns a resource for use with mysqli_real_connect()
- mysqli_insert_id -- Returns the auto generated id used in the last query
- mysqli_kill -- Asks the server to kill a MySQL thread
- mysqli_master_query -- Enforce execution of a query on the master in a master/slave setup
- mysqli_more_results -- Check if there any more query results from a multi query
- mysqli_multi_query -- Performs a query on the database
- mysqli_next_result -- Prepare next result from multi_query
- mysqli_num_fields --
Get the number of fields in a result
- mysqli_num_rows --
Gets the number of rows in a result
- mysqli_options -- Set options
- mysqli_param_count -- Alias for mysqli_stmt_param_count()
- mysqli_ping --
Pings a server connection, or tries to reconnect if the connection has gone down
- mysqli_prepare --
Prepare a SQL statement for execution
- mysqli_query -- Performs a query on the database
- mysqli_real_connect -- Opens a connection to a mysql server
- mysqli_real_escape_string --
Escapes special characters in a string for use in a SQL statement,
taking into account the current charset of the connection
- mysqli_real_query -- Execute an SQL query
- mysqli_report -- Enables or disables internal report functions
- mysqli_rollback -- Rolls back current transaction
- mysqli_rpl_parse_enabled -- Check if RPL parse is enabled
- mysqli_rpl_probe -- RPL probe
- mysqli_rpl_query_type -- Returns RPL query type
- mysqli_select_db -- Selects the default database for database queries
- mysqli_send_long_data -- Alias for mysqli_stmt_send_long_data()
- mysqli_send_query -- Send the query and return
- mysqli_server_end -- Shut down the embedded server
- mysqli_server_init -- Initialize embedded server
- mysqli_set_charset -- Sets the default client character set
- mysqli_set_opt -- Alias of mysqli_options()
- mysqli_sqlstate -- Returns the SQLSTATE error from previous MySQL operation
- mysqli_ssl_set -- Used for establishing secure connections using SSL
- mysqli_stat -- Gets the current system status
- mysqli_stmt_affected_rows -- Returns the total number of rows changed, deleted, or
inserted by the last executed statement
- mysqli_stmt_bind_param -- Binds variables to a prepared statement as parameters
- mysqli_stmt_bind_result -- Binds variables to a prepared statement for result storage
- mysqli_stmt_close -- Closes a prepared statement
- mysqli_stmt_data_seek -- Seeks to an arbitray row in statement result set
- mysqli_stmt_errno -- Returns the error code for the most recent statement call
- mysqli_stmt_error -- Returns a string description for last statement error
- mysqli_stmt_execute -- Executes a prepared Query
- mysqli_stmt_fetch --
Fetch results from a prepared statement into the bound variables
- mysqli_stmt_free_result -- Frees stored result memory for the given statement handle
- mysqli_stmt_init --
Initializes a statement and returns an object for use with mysqli_stmt_prepare
- mysqli_stmt_num_rows -- Return the number of rows in statements result set
- mysqli_stmt_param_count -- Returns the number of parameter for the given statement
- mysqli_stmt_prepare --
Prepare a SQL statement for execution
- mysqli_stmt_reset -- Resets a prepared statement
- mysqli_stmt_result_metadata -- Returns result set metadata from a prepared statement
- mysqli_stmt_send_long_data -- Send data in blocks
- mysqli_stmt_sqlstate -- Returns SQLSTATE error from previous statement operation
- mysqli_stmt_store_result -- Transfers a result set from a prepared statement
- mysqli_store_result -- Transfers a result set from the last query
- mysqli_thread_id -- Returns the thread ID for the current connection
- mysqli_thread_safe -- Returns whether thread safety is given or not
- mysqli_use_result -- Initiate a result set retrieval
- mysqli_warning_count -- Returns the number of warnings from the last query for the given link
- XC. Ncurses Terminal Screen Control Functions
- Содержание
- ncurses_addch -- Add character at current position and advance cursor
- ncurses_addchnstr -- Add attributed string with specified length at current position
- ncurses_addchstr -- Add attributed string at current position
- ncurses_addnstr -- Add string with specified length at current position
- ncurses_addstr -- Output text at current position
- ncurses_assume_default_colors -- Define default colors for color 0
- ncurses_attroff -- Turn off the given attributes
- ncurses_attron -- Turn on the given attributes
- ncurses_attrset -- Set given attributes
- ncurses_baudrate -- Returns baudrate of terminal
- ncurses_beep -- Let the terminal beep
- ncurses_bkgd -- Set background property for terminal screen
- ncurses_bkgdset -- Control screen background
- ncurses_border -- Draw a border around the screen using attributed characters
- ncurses_bottom_panel --
Moves a visible panel to the bottom of the stack
- ncurses_can_change_color -- Check if we can change terminals colors
- ncurses_cbreak -- Switch of input buffering
- ncurses_clear -- Clear screen
- ncurses_clrtobot -- Clear screen from current position to bottom
- ncurses_clrtoeol -- Clear screen from current position to end of line
- ncurses_color_content --
Gets the RGB value for color
- ncurses_color_set -- Set fore- and background color
- ncurses_curs_set -- Set cursor state
- ncurses_def_prog_mode -- Saves terminals (program) mode
- ncurses_def_shell_mode -- Saves terminals (shell) mode
- ncurses_define_key -- Define a keycode
- ncurses_del_panel --
Remove panel from the stack and delete it (but not the associated window)
- ncurses_delay_output -- Delay output on terminal using padding characters
- ncurses_delch -- Delete character at current position, move rest of line left
- ncurses_deleteln -- Delete line at current position, move rest of screen up
- ncurses_delwin -- Delete a ncurses window
- ncurses_doupdate -- Write all prepared refreshes to terminal
- ncurses_echo -- Activate keyboard input echo
- ncurses_echochar -- Single character output including refresh
- ncurses_end -- Stop using ncurses, clean up the screen
- ncurses_erase -- Erase terminal screen
- ncurses_erasechar -- Returns current erase character
- ncurses_filter -- Set LINES for iniscr() and newterm() to 1
- ncurses_flash -- Flash terminal screen (visual bell)
- ncurses_flushinp -- Flush keyboard input buffer
- ncurses_getch -- Read a character from keyboard
- ncurses_getmaxyx -- Returns the size of a window
- ncurses_getmouse -- Reads mouse event
- ncurses_getyx --
Returns the current cursor position for a window
- ncurses_halfdelay -- Put terminal into halfdelay mode
- ncurses_has_colors -- Check if terminal has colors
- ncurses_has_ic -- Check for insert- and delete-capabilities
- ncurses_has_il -- Check for line insert- and delete-capabilities
- ncurses_has_key -- Check for presence of a function key on terminal keyboard
- ncurses_hide_panel --
Remove panel from the stack, making it invisible
- ncurses_hline -- Draw a horizontal line at current position using an attributed character and max. n characters long
- ncurses_inch -- Get character and attribute at current position
- ncurses_init_color -- Set new RGB value for color
- ncurses_init_pair -- Allocate a color pair
- ncurses_init -- Initialize ncurses
- ncurses_insch -- Insert character moving rest of line including character at current position
- ncurses_insdelln -- Insert lines before current line scrolling down (negative numbers delete and scroll up)
- ncurses_insertln -- Insert a line, move rest of screen down
- ncurses_insstr -- Insert string at current position, moving rest of line right
- ncurses_instr -- Reads string from terminal screen
- ncurses_isendwin -- Ncurses is in endwin mode, normal screen output may be performed
- ncurses_keyok -- Enable or disable a keycode
- ncurses_keypad --
Turns keypad on or off
- ncurses_killchar -- Returns current line kill character
- ncurses_longname -- Returns terminals description
- ncurses_meta --
Enables/Disable 8-bit meta key information
- ncurses_mouse_trafo --
Transforms coordinates
- ncurses_mouseinterval -- Set timeout for mouse button clicks
- ncurses_mousemask -- Sets mouse options
- ncurses_move_panel --
Moves a panel so that its upper-left corner is at [startx, starty]
- ncurses_move -- Move output position
- ncurses_mvaddch -- Move current position and add character
- ncurses_mvaddchnstr -- Move position and add attributed string with specified length
- ncurses_mvaddchstr -- Move position and add attributed string
- ncurses_mvaddnstr -- Move position and add string with specified length
- ncurses_mvaddstr -- Move position and add string
- ncurses_mvcur -- Move cursor immediately
- ncurses_mvdelch -- Move position and delete character, shift rest of line left
- ncurses_mvgetch -- Move position and get character at new position
- ncurses_mvhline -- Set new position and draw a horizontal line using an attributed character and max. n characters long
- ncurses_mvinch -- Move position and get attributed character at new position
- ncurses_mvvline -- Set new position and draw a vertical line using an attributed character and max. n characters long
- ncurses_mvwaddstr -- Add string at new position in window
- ncurses_napms -- Sleep
- ncurses_new_panel --
Create a new panel and associate it with window
- ncurses_newpad --
Creates a new pad (window)
- ncurses_newwin -- Create a new window
- ncurses_nl -- Translate newline and carriage return / line feed
- ncurses_nocbreak -- Switch terminal to cooked mode
- ncurses_noecho -- Switch off keyboard input echo
- ncurses_nonl -- Do not translate newline and carriage return / line feed
- ncurses_noqiflush -- Do not flush on signal characters
- ncurses_noraw -- Switch terminal out of raw mode
- ncurses_pair_content --
Gets the RGB value for color
- ncurses_panel_above --
Returns the panel above panel
- ncurses_panel_below --
Returns the panel below panel
- ncurses_panel_window --
Returns the window associated with panel
- ncurses_pnoutrefresh --
Copies a region from a pad into the virtual screen
- ncurses_prefresh --
Copies a region from a pad into the virtual screen
- ncurses_putp -- Apply padding information to the string and output it
- ncurses_qiflush -- Flush on signal characters
- ncurses_raw -- Switch terminal into raw mode
- ncurses_refresh -- Refresh screen
- ncurses_replace_panel --
Replaces the window associated with panel
- ncurses_reset_prog_mode --
Resets the prog mode saved by def_prog_mode
- ncurses_reset_shell_mode --
Resets the shell mode saved by def_shell_mode
- ncurses_resetty -- Restores saved terminal state
- ncurses_savetty -- Saves terminal state
- ncurses_scr_dump -- Dump screen content to file
- ncurses_scr_init -- Initialize screen from file dump
- ncurses_scr_restore -- Restore screen from file dump
- ncurses_scr_set -- Inherit screen from file dump
- ncurses_scrl -- Scroll window content up or down without changing current position
- ncurses_show_panel --
Places an invisible panel on top of the stack, making it visible
- ncurses_slk_attr -- Returns current soft label key attribute
- ncurses_slk_attroff -- Turn off the given attributes for soft function-key labels
- ncurses_slk_attron -- Turn on the given attributes for soft function-key labels
- ncurses_slk_attrset -- Set given attributes for soft function-key labels
- ncurses_slk_clear -- Clears soft labels from screen
- ncurses_slk_color -- Sets color for soft label keys
- ncurses_slk_init -- Initializes soft label key functions
- ncurses_slk_noutrefresh -- Copies soft label keys to virtual screen
- ncurses_slk_refresh -- Copies soft label keys to screen
- ncurses_slk_restore -- Restores soft label keys
- ncurses_slk_set --
Sets function key labels
- ncurses_slk_touch -- Forces output when ncurses_slk_noutrefresh is performed
- ncurses_standend -- Stop using 'standout' attribute
- ncurses_standout -- Start using 'standout' attribute
- ncurses_start_color -- Start using colors
- ncurses_termattrs -- Returns a logical OR of all attribute flags supported by terminal
- ncurses_termname -- Returns terminals (short)-name
- ncurses_timeout -- Set timeout for special key sequences
- ncurses_top_panel --
Moves a visible panel to the top of the stack
- ncurses_typeahead -- Specify different filedescriptor for typeahead checking
- ncurses_ungetch -- Put a character back into the input stream
- ncurses_ungetmouse -- Pushes mouse event to queue
- ncurses_update_panels --
Refreshes the virtual screen to reflect the relations between panels in the stack
- ncurses_use_default_colors -- Assign terminal default colors to color id -1
- ncurses_use_env -- Control use of environment information about terminal size
- ncurses_use_extended_names -- Control use of extended names in terminfo descriptions
- ncurses_vidattr -- Display the string on the terminal in the video attribute mode
- ncurses_vline -- Draw a vertical line at current position using an attributed character and max. n characters long
- ncurses_waddch --
Adds character at current position in a window and advance cursor
- ncurses_waddstr --
Outputs text at current postion in window
- ncurses_wattroff --
Turns off attributes for a window
- ncurses_wattron --
Turns on attributes for a window
- ncurses_wattrset --
Set the attributes for a window
- ncurses_wborder -- Draws a border around the window using attributed characters
- ncurses_wclear --
Clears window
- ncurses_wcolor_set --
Sets windows color pairings
- ncurses_werase --
Erase window contents
- ncurses_wgetch --
Reads a character from keyboard (window)
- ncurses_whline --
Draws a horizontal line in a window at current position using an attributed character and max. n characters long
- ncurses_wmouse_trafo --
Transforms window/stdscr coordinates
- ncurses_wmove --
Moves windows output position
- ncurses_wnoutrefresh --
Copies window to virtual screen
- ncurses_wrefresh -- Refresh window on terminal screen
- ncurses_wstandend --
End standout mode for a window
- ncurses_wstandout --
Enter standout mode for a window
- ncurses_wvline --
Draws a vertical line in a window at current position using an attributed character and max. n characters long
- XCI. Network Functions
- Содержание
- checkdnsrr --
Check DNS records corresponding to a given Internet host name or
IP address
- closelog -- Close connection to system logger
- debugger_off -- Disable internal PHP debugger (PHP 3)
- debugger_on -- Enable internal PHP debugger (PHP 3)
- define_syslog_variables -- Initializes all syslog related constants
- dns_check_record -- Synonym for checkdnsrr()
- dns_get_mx -- Synonym for getmxrr()
- dns_get_record --
Fetch DNS Resource Records associated with a hostname
- fsockopen --
Open Internet or Unix domain socket connection
- gethostbyaddr --
Get the Internet host name corresponding to a given IP address
- gethostbyname --
Get the IP address corresponding to a given Internet host name
- gethostbynamel --
Get a list of IP addresses corresponding to a given Internet host
name
- getmxrr --
Get MX records corresponding to a given Internet host name
- getprotobyname --
Get protocol number associated with protocol name
- getprotobynumber --
Get protocol name associated with protocol number
- getservbyname --
Get port number associated with an Internet service and protocol
- getservbyport --
Get Internet service which corresponds to port and protocol
- inet_ntop --
Converts a packed internet address to a human readable representation
- inet_pton --
Converts a human readable IP address to its packed in_addr representation
- ip2long --
Converts a string containing an (IPv4) Internet Protocol dotted address
into a proper address
- long2ip --
Converts an (IPv4) Internet network address into a string in Internet
standard dotted format
- openlog -- Open connection to system logger
- pfsockopen --
Open persistent Internet or Unix domain socket connection
- socket_get_status -- Alias of stream_get_meta_data()
- socket_set_blocking -- Alias of stream_set_blocking()
- socket_set_timeout -- Alias of stream_set_timeout()
- syslog -- Generate a system log message
- XCII. Newt Functions
- Содержание
- newt_bell -- Send a beep to the terminal
- newt_button_bar --
- newt_button --
- newt_centered_window -- Open a centered window of the specified size
- newt_checkbox_get_value --
- newt_checkbox_set_flags --
- newt_checkbox_set_value --
- newt_checkbox_tree_add_item -- *
- newt_checkbox_tree_find_item --
- newt_checkbox_tree_get_current --
- newt_checkbox_tree_get_entry_value --
- newt_checkbox_tree_get_multi_selection --
- newt_checkbox_tree_get_selection --
- newt_checkbox_tree_multi --
- newt_checkbox_tree_set_current --
- newt_checkbox_tree_set_entry_value --
- newt_checkbox_tree_set_entry --
- newt_checkbox_tree_set_width --
- newt_checkbox_tree --
- newt_checkbox --
- newt_clear_key_buffer -- Discards the contents of the terminal's input buffer without
waiting for additional input
- newt_cls --
- newt_compact_button --
- newt_component_add_callback --
- newt_component_takes_focus --
- newt_create_grid --
- newt_cursor_off --
- newt_cursor_on --
- newt_delay --
- newt_draw_form --
- newt_draw_root_text -- Displays the string text at the position indicated
- newt_entry_get_value --
- newt_entry_set_filter --
- newt_entry_set_flags --
- newt_entry_set --
- newt_entry --
- newt_finished -- Uninitializes newt interface.
- newt_form_add_component -- Adds a single component to the form
- newt_form_add_components -- Add several components to the form
- newt_form_add_host_key --
- newt_form_destroy -- Destroys a form
- newt_form_get_current --
- newt_form_run -- Runs a form
- newt_form_set_background --
- newt_form_set_height --
- newt_form_set_size --
- newt_form_set_timer --
- newt_form_set_width --
- newt_form_watch_fd --
- newt_form -- Create a form
- newt_get_screen_size -- Fills in the passed references with the current size of the
terminal
- newt_grid_add_components_to_form --
- newt_grid_basic_window --
- newt_grid_free --
- newt_grid_get_size --
- newt_grid_h_close_stacked --
- newt_grid_h_stacked --
- newt_grid_place --
- newt_grid_set_field --
- newt_grid_simple_window --
- newt_grid_v_close_stacked --
- newt_grid_v_stacked --
- newt_grid_wrapped_window_at --
- newt_grid_wrapped_window --
- newt_init -- Initialize newt
- newt_label_set_text --
- newt_label --
- newt_listbox_append_entry --
- newt_listbox_clear_selection --
- newt_listbox_clear --
- newt_listbox_delete_entry --
- newt_listbox_get_current --
- newt_listbox_get_selection --
- newt_listbox_insert_entry --
- newt_listbox_item_count --
- newt_listbox_select_item --
- newt_listbox_set_current_by_key --
- newt_listbox_set_current --
- newt_listbox_set_data --
- newt_listbox_set_entry --
- newt_listbox_set_width --
- newt_listbox --
- newt_listitem_get_data --
- newt_listitem_set --
- newt_listitem --
- newt_open_window -- Open a window of the specified size and position
- newt_pop_help_line -- Replaces the current help line with the one from the stack
- newt_pop_window -- Removes the top window from the display
- newt_push_help_line -- Saves the current help line on a stack, and displays the new line
- newt_radio_get_current --
- newt_radiobutton --
- newt_redraw_help_line --
- newt_reflow_text --
- newt_refresh -- Updates modified portions of the screen
- newt_resize_screen --
- newt_resume -- Resume using the newt interface after calling
newt_suspend()
- newt_run_form -- Runs a form
- newt_scale_set --
- newt_scale --
- newt_scrollbar_set --
- newt_set_help_callback --
- newt_set_suspend_callback -- Set a callback function which gets invoked when user
presses the suspend key
- newt_suspend -- Tells newt to return the terminal to its initial state
- newt_texbox_set_text --
- newt_textbox_get_num_lines --
- newt_textbox_reflowed --
- newt_textbox_set_height --
- newt_textbox --
- newt_vertical_scrollbar --
- newt_wait_for_key -- Doesn't return until a key has been pressed
- newt_win_choice --
- newt_win_entries --
- newt_win_menu --
- newt_win_message --
- newt_win_messagev --
- newt_win_ternary --
- XCIII. NSAPI-specific Functions
- XCIV. Object Aggregation/Composition Functions
- Содержание
- aggregate_info --
Returns an associative array of the methods and properties from
each class that has been aggregated to the object
- aggregate_methods_by_list --
Selective dynamic class methods aggregation to an object
- aggregate_methods_by_regexp --
Selective class methods aggregation to an object using a regular
expression
- aggregate_methods --
Dynamic class and object aggregation of methods
- aggregate_properties_by_list --
Selective dynamic class properties aggregation to an object
- aggregate_properties_by_regexp --
Selective class properties aggregation to an object using a regular
expression
- aggregate_properties --
Dynamic aggregation of class properties to an object
- aggregate --
Dynamic class and object aggregation of methods and properties
- aggregation_info -- Alias of aggregate_info()
- deaggregate --
Removes the aggregated methods and properties from an object
- XCV. Object property and method call overloading
- XCVI. Функции для работы с Oracle
- Содержание
- OCI-Collection->append -- Appends element to the collection
- OCI-Collection->assign -- Assigns a value to the collection from another existing collection
- OCI-Collection->assignElem -- Assigns a value to the element of the collection
- OCI-Collection->free -- Frees the resources associated with the collection object
- OCI-Collection->getElem -- Returns value of the element
- OCI-Collection->max -- Returns the maximum number of elements in the collection
- OCI-Collection->size -- Returns size of the collection
- OCI-Collection->trim -- Trims elements from the end of the collection
- OCI-Lob->append -- Appends data from the large object to another large object
- OCI-Lob->close -- Closes LOB descriptor
- OCI-Lob->eof -- Tests for end-of-file on a large object's descriptor
- OCI-Lob->erase -- Erases a specified portion of the internal LOB data
- OCI-Lob->export -- Exports LOB's contents to a file
- OCI-Lob->flush -- Flushes/writes buffer of the LOB to the server
- OCI-Lob->free -- Frees resources associated with the LOB descriptor
- OCI-Lob->getBuffering -- Returns current state of buffering for the large object
- OCI-Lob->import -- Imports file data to the LOB
- OCI-Lob->load -- Returns large object's contents
- OCI-Lob->read -- Reads part of the large object
- OCI-Lob->rewind -- Moves the internal pointer to the beginning of the large object
- OCI-Lob->save -- Saves data to the large object
- OCI-Lob->saveFile -- Alias of oci_lob_import()
- OCI-Lob->seek -- Sets the internal pointer of the large object
- OCI-Lob->setBuffering -- Changes current state of buffering for the large object
- OCI-Lob->size -- Returns size of large object
- OCI-Lob->tell -- Returns current position of internal pointer of large object
- OCI-Lob->truncate -- Truncates large object
- OCI-Lob->write -- Writes data to the large object
- OCI-Lob->writeTemporary -- Writes temporary large object
- OCI-Lob->writeToFile -- Alias of oci_lob_export()
- oci_bind_by_name --
Привязывает переменную PHP к соответствующей метке в SQL-выражении.
- oci_cancel -- Заканчивает процесс чтения из курсора
- oci_close -- Закрывает соединение с сервером Oracle
- oci_commit -- Завершает и подтверждает транзакцию
- oci_connect -- Устанавливает соединение с сервером Oracle
- oci_define_by_name --
Определяет переменную PHP, в которую будет возвращено соответствующее поле
из результата
- oci_error -- Возвращает последнюю ошибку
- oci_execute -- Выполняет выражение SQL
- oci_fetch_all -- Выбирает все строки из результата запроса в массив
- oci_fetch_array -- Возвращает следующую строку из результата запроса в виде
ассоциативного массива, числового массива или оба сразу
- oci_fetch_assoc -- Возвращает следующую строку из результата запроса в виде
ассоциативного массива
- oci_fetch_object -- Возвращает следующую строку из результата запроса в виде
объекта
- oci_fetch_row -- Возвращает следующую строку из результата запроса в виде
массива с числовыми индексами
- oci_fetch -- Выбирает следующую строку из результата в буфер
- oci_field_is_null -- Проверяет, равняется ли поле NULL
- oci_field_name -- Возвращает имя поля из результата запроса
- oci_field_precision -- Возвращает точность поля
- oci_field_scale -- Возвращает масштаб поля
- oci_field_size -- Возвращает размер поля
- oci_field_type_raw -- Возвращает тип исходный тип поля
- oci_field_type -- Возвращает тип поля
- oci_free_statement --
Освобождает ресурсы, занимаемые курсором или SQL-выражением
- oci_internal_debug --
Включает и выключает внутреннюю отладку
- oci_lob_copy -- Копирует содержание или часть содержания одного объекта LOB в другой
- oci_lob_is_equal -- Сравнивает два объекта LOB
- oci_new_collection -- Создает новый объект коллекции
- oci_new_connect -- Устанавливает новое соединение с сервером Oracle
- oci_new_cursor -- Возвращает идентификатор созданного курсора
- oci_new_descriptor -- Инициализирует новый дескриптор объекта LOB или FILE
- oci_num_fields --
Возвращает количество полей в результате запроса
- oci_num_rows -- Возвращает количество строк, измененных в процессе выполнения
запроса
- oci_parse -- Подготавливает запрос к выполнению
- oci_password_change -- Изменяет пароль пользователя Oracle
- oci_pconnect --
Устанавливает постоянное соединение с сервером Oracle
- oci_result -- Возвращает значение поля из результата запроса
- oci_rollback -- Откатывает транзакции, ожидающие обработки
- oci_server_version -- Возвращает строку с информацией о версии сервера Oracle
- oci_set_prefetch -- Устанавливает количество строк, которые будут автоматически
выбраны в буфер
- oci_statement_type -- Возвращает тип выражения
- ocibindbyname -- Alias of oci_bind_by_name()
- ocicancel -- Alias of oci_cancel()
- ocicloselob -- Alias of OCI-Lob->close
- ocicollappend -- Alias of OCI-Collection->append
- ocicollassign -- Alias of OCI-Collection->assign
- ocicollassignelem -- Alias of OCI-Collection->assignElem
- ocicollgetelem -- Alias of OCI-Collection->getElem
- ocicollmax -- Alias of OCI-Collection->max
- ocicollsize -- Alias of OCI-Collection->size
- ocicolltrim -- Alias of OCI-Collection->trim
- ocicolumnisnull -- Alias of oci_field_is_null()
- ocicolumnname -- Alias of oci_field_name()
- ocicolumnprecision -- Alias of oci_field_precision()
- ocicolumnscale -- Alias of oci_field_scale()
- ocicolumnsize -- Alias of oci_field_size()
- ocicolumntype -- Alias of oci_field_type()
- ocicolumntyperaw -- Alias of oci_field_type_raw()
- ocicommit -- Alias of oci_commit()
- ocidefinebyname -- Alias of oci_define_by_name()
- ocierror -- Alias of oci_error()
- ociexecute -- Alias of oci_execute()
- ocifetch -- Alias of oci_fetch()
- ocifetchinto -- Выбирает следующую строку из результата запроса в массив
- ocifetchstatement -- Выбирает все строки из результата запроса в массив
- ocifreecollection -- Alias of OCI-Collection->free
- ocifreecursor -- Alias of oci_free_statement()
- ocifreedesc -- Alias of OCI-Lob->free
- ocifreestatement -- Alias of oci_free_statement()
- ociinternaldebug -- Alias of oci_internal_debug()
- ociloadlob -- Alias of OCI-Lob->load
- ocilogoff -- Alias of oci_close()
- ocilogon -- Alias of oci_connect()
- ocinewcollection -- Alias of oci_new_collection()
- ocinewcursor -- Alias of oci_new_cursor()
- ocinewscriptor -- Alias of oci_new_descriptor()
- ocinlogon -- Alias of oci_new_connect()
- ocinumcols -- Alias of oci_num_fields()
- ociparse -- Alias of oci_parse()
- ociplogon -- Alias of oci_pconnect()
- ociresult -- Alias of oci_result()
- ocirollback -- Alias of oci_rollback()
- ocirowcount -- Alias of oci_num_rows()
- ocisavelob -- Alias of OCI-Lob->save
- ocisavelobfile -- Alias of OCI-Lob->import
- ociserverversion -- Alias of oci_server_version()
- ocisetprefetch -- Alias of oci_set_prefetch()
- ocistatementtype -- Alias of oci_statement_type()
- ociwritelobtofile -- Alias of OCI-Lob->export
- ociwritetemporarylob -- Alias of OCI-Lob->writeTemporary
- XCVII. ODBC Functions (Unified)
- Содержание
- odbc_autocommit -- Toggle autocommit behaviour
- odbc_binmode -- Handling of binary column data
- odbc_close_all -- Close all ODBC connections
- odbc_close -- Close an ODBC connection
- odbc_columnprivileges --
Returns a result identifier that can be used to fetch a list of
columns and associated privileges
- odbc_columns --
Lists the column names in specified tables
- odbc_commit -- Commit an ODBC transaction
- odbc_connect -- Connect to a datasource
- odbc_cursor -- Get cursorname
- odbc_data_source -- Returns information about a current connection
- odbc_do -- Synonym for odbc_exec()
- odbc_error -- Get the last error code
- odbc_errormsg -- Get the last error message
- odbc_exec -- Prepare and execute a SQL statement
- odbc_execute -- Execute a prepared statement
- odbc_fetch_array -- Fetch a result row as an associative array
- odbc_fetch_into -- Fetch one result row into array
- odbc_fetch_object -- Fetch a result row as an object
- odbc_fetch_row -- Fetch a row
- odbc_field_len -- Get the length (precision) of a field
- odbc_field_name -- Get the columnname
- odbc_field_num -- Return column number
- odbc_field_precision -- Synonym for odbc_field_len()
- odbc_field_scale -- Get the scale of a field
- odbc_field_type -- Datatype of a field
- odbc_foreignkeys --
Returns a list of foreign keys in the specified table or a list
of foreign keys in other tables that refer to the primary key in
the specified table
- odbc_free_result -- Free resources associated with a result
- odbc_gettypeinfo --
Returns a result identifier containing information about data
types supported by the data source
- odbc_longreadlen -- Handling of LONG columns
- odbc_next_result --
Checks if multiple results are available
- odbc_num_fields -- Number of columns in a result
- odbc_num_rows -- Number of rows in a result
- odbc_pconnect -- Open a persistent database connection
- odbc_prepare -- Prepares a statement for execution
- odbc_primarykeys --
Returns a result identifier that can be used to fetch the column
names that comprise the primary key for a table
- odbc_procedurecolumns --
Retrieve information about parameters to procedures
- odbc_procedures --
Get the list of procedures stored in a specific data source
- odbc_result_all -- Print result as HTML table
- odbc_result -- Get result data
- odbc_rollback -- Rollback a transaction
- odbc_setoption --
Adjust ODBC settings
- odbc_specialcolumns --
Returns either the optimal set of columns that uniquely
identifies a row in the table or columns that are automatically
updated when any value in the row is updated by a transaction
- odbc_statistics -- Retrieve statistics about a table
- odbc_tableprivileges --
Lists tables and the privileges associated with each table
- odbc_tables --
Get the list of table names stored in a specific data source
- XCVIII. ODBC and DB2 functions (PDO_ODBC)
|
|