Поиск по:old.master.cmc.msu.ru -
Поискать по всем серверам
На этой странице приведены все страницы сервера old.master.cmc.msu.ru ,которые мы индексируем. Показаны документы 481 - 500 из 3519.
Упорядочить по:
URL
|
дате изменения
481. Source Layout
... Directory and File Functions . ... Main directory layout of the PHP source tree. ... Main PHP source files and main header files; here you'll find all of PHP's API definitions, macros, etc. (important). ext . ... php.h , located in the main PHP directory. This file contains most of PHP's macro and API definitions. zend.h , located in the main Zend directory. This file contains most of Zend's macros and definitions. zend_API.h , also located in the Zend directory, which defines Zend's API. ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/zend.layout.html -- 8.7 Кб -- 03.02.2002
Похожие документы
Похожие документы
482. PHP's Automatic Build System
... PHP 4.0 features an automatic build system that's very flexible. ... The default config.m4 . dnl $Id: Extending_Zend_ Build .xml,v 1.1 2002/01/09 12:16:30 derick Exp $ dnl config.m4 for extension my_module dnl don't forget to call PHP_EXTENSION( my_module ) dnl If your extension references something external, use with: PHP_ARG_WITH( my_module , for my_module support, dnl Make sure that the comment is aligned: [ --with-my_module Include my_module support]) dnl Otherwise ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/zend.build.html -- 10.2 Кб -- 03.02.2002
Похожие документы
Похожие документы
483. Creating Extensions
PHP Manual . ... Compiling Modules . ... Use the provided "make" mechanism in the dl directory. ... enable-array_experiments BOOK : Enables array experiments --enable-call_userland BOOK : Enables userland module --enable-cross_conversion BOOK : Enables cross-conversion module --enable- first _ module BOOK : Enables first module --enable-infoprint BOOK : Enables infoprint module --enable-reference_test BOOK : Enables reference test module --enable-resource_test BOOK : ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/zend.creating.html -- 10.0 Кб -- 03.02.2002
Похожие документы
Похожие документы
484. Complex Types
. PHP Manual . Prev . Chapter 26. Source Layout . Next . Complex types such as arrays and objects require different treatment. Zend features a single API for these types - they're stored using hash tables. Note: To reduce complexity in the following source examples, we're only working with simple types such as integers at first. A discussion about creating more advanced types follows later in this chapter. Prev . Home . Next . String Handling . Up . PHP's Automatic Build System
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/zend.layout.complex-types.html -- 3.4 Кб -- 03.02.2002
Похожие документы
Похожие документы
485. String Handling
... Prev . ... Next . Strings are handled a bit differently by the Zend engine than other values such as integers, Booleans, etc., which don't require additional memory allocation for storing their values. If you want to return a string from a function, introduce a new string variable to the symbol table, or do something similar, you have to make sure that the memory the string will be occupying has previously been allocated, using the aforementioned e*() functions for allocation. ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/zend.layout.string-handling.html -- 3.6 Кб -- 03.02.2002
Похожие документы
Похожие документы
486. Directory and File Functions
... Prev . ... Next . The following directory and file functions should be used in Zend modules (they behave exactly like their C counterparts): . Zend Function . Regular C Function . ... V_CHDIR_FILE() . Takes a file path as an argument and changes the current working directory to that file's directory. ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/zend.layout.dir-and-file.html -- 5.1 Кб -- 03.02.2002
Похожие документы
Похожие документы
487. Macros
... Prev . Chapter 26. Source Layout . Next . For almost every important task, Zend ships predefined macros that are extremely handy. The tables and figures in the following sections describe most of the basic functions, structures, and macros. The macro definitions can be found mainly in zend.h and zend_API.h . ... Although you can go ahead and read them now, not everything will make sense to you yet.) ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/zend.layout.macros.html -- 3.4 Кб -- 03.02.2002
Похожие документы
Похожие документы
488. Memory Management
... Resource management is a crucial issue, especially in server software. ... Memory management has been partially abstracted in Zend, and you should stick to this abstraction for obvious reasons: Due to the abstraction, Zend gets full control over all memory allocations. Zend is able to determine whether a block is in use, automatically freeing unused blocks and blocks with lost references, and thus prevent memory leaks. The functions to be used are described in the following table: . ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/zend.layout.memory-management.html -- 6.6 Кб -- 03.02.2002
Похожие документы
Похожие документы
489. Built-in Modules
PHP Manual . ... Extension Possibilities . ... Built-in modules are compiled directly into PHP and carried around with every PHP process; their functionality is instantly available to every script that's being run. Like external modules, built-in modules have advantages and disadvantages, as described in the following table: . ... No need to load the module specifically; the functionality is instantly available. ... No external files clutter up the disk; everything resides in the PHP binary. ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/zend.possibilities.builtin.html -- 4.5 Кб -- 03.02.2002
Похожие документы
Похожие документы
490. The Zend Engine
PHP Manual . Prev . ... Next . Of course, extensions can also be implemented directly in the Zend engine. ... In general, however, modifications to the Zend engine should be avoided. Changes here result in incompatibilities with the rest of the world, and hardly anyone will ever adapt to specially patched Zend engines. Modifications can't be detached from the main PHP sources and are overridden with the next update using the "official" source repositories. ... Source Layout ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/zend.possibilities.engine.html -- 3.7 Кб -- 03.02.2002
Похожие документы
Похожие документы
491. Extension Possibilities
... External Modules . Built-in Modules . ... External modules can be loaded at script runtime using the function dl() . ... External additional files clutter up the disk. Every script that wants to use an external module's functionality has to specifically include a call to dl() , or the extension tag in php.ini needs to be modified (which is not always a suitable solution). ... Third parties might consider using the extension tag in php.ini to create additional external modules to PHP. ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/zend.possibilities.html -- 6.1 Кб -- 03.02.2002
Похожие документы
Похожие документы
492. Overview
PHP Manual . ... What Is Zend? and What Is PHP? Extending PHP" is easier said than done. ... After that, you'll learn about Zend's advanced API functionality. The alternative would have been to try to impart the functionality, design, tips, tricks, etc. as a whole, all at once, thus giving a complete look at the big picture before doing anything practical. ... The name Zend refers to the language engine, PHP's core. ... Zend takes part 1 completely and a bit of part 2; PHP takes parts 2 and 3. ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/zend.overview.html -- 6.3 Кб -- 03.02.2002
Похожие документы
Похожие документы
493. gzencode
... PHP 4 >= 4.0.4) gzencode -- Create a gzip compressed string . string gzencode ( string data [, int level]) . ... The optional parameter level can be given as 0 for no compression up to 9 for maximum compression, if not given the default compression level will be 1. The resulting data contains the appropriate headers and data structure to make a standard .gz file, e.g.: . ... For more information on the GZIP file format, see the document: GZIP file format specification version 4.3 (RFC 1952). ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.gzencode.html -- 4.7 Кб -- 03.02.2002
Похожие документы
Похожие документы
494. Function Reference
... I. Apache-specific Functions . ... Aspell functions [deprecated] . ... V. Bzip2 Compression Functions . ... CURL, Client URL Library Functions . ... Database (dbm-style) abstraction layer functions . ... Error Handling and Logging Functions . ... Function Handling functions . ... ICAP Functions [deprecated] . ... Mohawk Software session handler functions . ... Ncurses terminal screen control functions . ... Output Control Functions . ... SESAM database functions . ... Session handling functions . ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/funcref.html -- 10.2 Кб -- 03.02.2002
Похожие документы
Похожие документы
495. Zlib Compression Functions
... Opens a temporary file and writes a test string to it, then it prints out the content of this file twice. ... php $ filename = tempnam ('/tmp', 'zlibtest').'.gz'; print html \n head /head \n body \n pre \n ; $s = Only a test , test , test , test , test , test , test , test !\n ; // open file for writing with maximum compression $zp = gzopen($ filename , w9 ); // write string to file gzwrite($zp, $s); // close file gzclose($zp); // open ... gzopen -- Open gz-file . ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/ref.zlib.html -- 7.5 Кб -- 03.02.2002
Похожие документы
Похожие документы
496. gzinflate
... Next . PHP 4 >= 4.0.4) gzinflate -- Inflate a deflated string . string gzinflate ( string data [, int length]) . This function takes data compressed by gzdeflate() and returns the original uncompressed data or FALSE on error. The function will return an error if the uncompressed data is more than 256 times the length of the compressed input data or more than the optional parameter length . ... gzuncompress() , gzdeflate() , gzencode() . ... gzdeflate . ... gzencode ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.gzinflate.html -- 4.0 Кб -- 03.02.2002
Похожие документы
Похожие документы
497. gzdeflate
... PHP 4 >= 4.0.4) gzdeflate -- Deflate a string . string gzdeflate ( string data [, int level]) . This function returns a compressed version of the input data using the DEFLATE data format, or FALSE if an error is encountered. ... For details on the DEFLATE compression algorithm see the document " DEFLATE Compressed Data Format Specification version 1.3 " (RFC 1951). See also gzinflate() , gzcompress() , gzuncompress() , gzencode() . ... gzuncompress . ... gzinflate ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.gzdeflate.html -- 4.1 Кб -- 03.02.2002
Похожие документы
Похожие документы
498. gzuncompress
... Next . PHP 4 ) gzuncompress -- Uncompress a deflated string . string gzuncompress ( string data [, int length]) . This function takes data compressed by gzcompress() and returns the original uncompressed data or FALSE on error. The function will return an error if the uncompressed data is more than 256 times the length of the compressed input data or more than the optional parameter length . See also gzdeflate() , gzinflate() , gzcompress() , gzencode() . ... gzcompress . ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.gzuncompress.html -- 4.0 Кб -- 03.02.2002
Похожие документы
Похожие документы
499. readgzfile
PHP Manual . Prev . ... PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) readgzfile -- Output a gz-file . int readgzfile ( string filename [, int use_include_path]) . Reads a file, decompresses it and writes it to standard output. readgzfile() can be used to read a file which is not in gzip format; in this case readgzfile() will directly read from the file without decompression. ... If an error occurs, FALSE is returned and unless the function was called as @readgzfile , an error message is printed. ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.readgzfile.html -- 4.3 Кб -- 03.02.2002
Похожие документы
Похожие документы
500. gzcompress
... PHP 4 ) gzcompress -- Compress a string . string gzcompress ( string data [, int level]) . This function returns a compressed version of the input data using the ZLIB data format, or FALSE if an error is encountered. ... For details on the ZLIB compression algorithm see the document " ZLIB Compressed Data Format Specification version 3.3 " (RFC 1950). Note: This is not the same as gzip compression, which includes some header data. See gzencode() for gzip compression. ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.gzcompress.html -- 4.4 Кб -- 03.02.2002
Похожие документы
Похожие документы