Home
last modified time | relevance | path

Searched refs:type (Results 1 – 25 of 1715) sorted by path

12345678910>>...69

/PHP-5.3/
H A D.gdbinit69 set $type = $zvalue->type
76 if $type == 0
79 if $type == 1
82 if $type == 2
85 if $type == 3
93 if $type == 4
109 if $type == 5
147 if $type == 6
151 if $type == 7
160 if $type > 9
[all …]
H A DINSTALL492 type ./configure --help in the corresponding source tree.
680 type=magnus-internal/x-httpd-php exts=php
716 ObjectType fn="force-type" type="magnus-internal/x-httpd-php"
794 corresponding default Service line for type="magnus-internal/directory"
1116 The standard installation type is using mod_php, and enabling the
1129 type the following into the Terminal Application (after, it will
1721 PHP_INI_ALL and PHP_INI_PERDIR type directives. To clear a
1729 with PHP_INI_ALL and PHP_INI_PERDIR type directives.
1733 in .htaccess files. Any directive type set with php_admin_value
1739 used in .htaccess files. Any directive type set with
[all …]
H A DNEWS102 . Fixed bug #64609 (pg_convert enum type support). (Matteo)
795 time zone type 2). (Derick)
2479 wrong type in declaration). (Ilia)
3510 inside a binary or image column type). (Ilia)
4525 - Fixed wrong length calculation in unserialize S type
4851 type hint self). (thekid at php dot net)
4863 type are set to 0). (Dmitry)
5016 type VT_DISPATCH|VT_REF) (Andy)
5708 type to string). (Tony)
6007 - Added array type hinting. (Dmitry)
[all …]
H A DREADME.EXT_SKEL74 If possible, the function definition should also contain it's return type
112 handled. For other types you must write the code yourself. And for type
H A DREADME.PARAMETER_PARSING_API6 that given the string of type specifiers, can parse the input parameters
20 passed to the extension function, the type specifier string, and the
34 The following list shows the type specifier, its meaning and the parameter
52 o - object of any type (zval*)
53 O - object of specific type given by class entry (zval*, zend_class_entry)
67 ! - the parameter it follows can be of specified type or NULL (applies
142 * or any other type. If you specify a type which is larger
H A DREADME.STREAMS184 appropriate error message of type E_WARNING if the cast fails.
219 stream_is tells you if the stream is a particular type of stream, whereas
H A DREADME.SUBMITTING_PATCH51 attachments of type 'text/*' are accepted.
75 of type 'text/*' are accepted.
105 only MIME attachments of type 'text/*' are accepted.
H A DREADME.TESTING19 type "make test" to execute all or some test scripts saved under
H A DREADME.TESTING2120 in an HTTP request, such as content type for multipart posts, cookies, etc.
H A DREADME.UNIX-BUILD-SYSTEM101 Instead of using PHP_SAPI=foo/PHP_BUILD_XYZ, you will need to type
103 PHP_SELECT_SAPI(name, type, sources.c)
H A DTODO-5.14 - Implement inheritance rules for type hints. (Marcus)
H A DUPGRADING61 - The $initial parameter for array_reduce can now be of any type.
/PHP-5.3/TSRM/
H A DTSRM.h157 #define TSRMG(id, type, element) (((type) (*((void ***) tsrm_ls))[TSRM_UNSHUFFLE_RSRC_ID(id)])->ele… argument
H A Dtsrm_nw.c53 TSRM_API FILE* popen(const char *commandline, const char *type) argument
73 if (!commandline || !type)
82 if (strcmp(type, "r") == 0)
88 else if (strcmp(type, "w") == 0)
202 stream = fdopen(pipe_handle, type);
H A Dtsrm_nw.h26 TSRM_API FILE* popen(const char *command, const char *type);
H A Dtsrm_virtual_cwd.c1843 CWD_API FILE *virtual_popen(const char *command, const char *type TSRMLS_DC) /* {{{ */ in virtual_popen()
1845 return popen_ex(command, type, CWDG(cwd).cwd, NULL); in virtual_popen()
1852 CWD_API FILE *virtual_popen(const char *command, const char *type TSRMLS_DC) /* {{{ */ in virtual_popen()
1868 retval = popen(command, type); in virtual_popen()
1879 CWD_API FILE *virtual_popen(const char *command, const char *type TSRMLS_DC) /* {{{ */ in virtual_popen()
1931 retval = popen(command_line, type); in virtual_popen()
H A Dtsrm_virtual_cwd.h171 CWD_API FILE *virtual_popen(const char *command, const char *type TSRMLS_DC);
275 #define VCWD_POPEN(command, type) virtual_popen(command, type TSRMLS_CC) argument
311 #define VCWD_POPEN(command, type) popen(command, type) argument
H A Dtsrm_win32.c214 DWORD type; in tsrm_win32_access() local
215 return GetBinaryType(pathname, &type) ? 0 : -1; in tsrm_win32_access()
452 TSRM_API FILE *popen(const char *command, const char *type) in popen() argument
454 return popen_ex(command, type, NULL, NULL); in popen()
460 int fno, type_len = strlen(type), read, mode; in popen_ex()
470 char *ptype = (char *)type; in popen_ex()
477 if (!type) { in popen_ex()
482 type_len = strlen(type); in popen_ex()
509 read = (type[0] == 'r') ? TRUE : FALSE; in popen_ex()
510 mode = ((type_len == 2) && (type[1] == 'b')) ? O_BINARY : O_TEXT; in popen_ex()
[all …]
H A Dtsrm_win32.h98 TSRM_API FILE *popen_ex(const char *command, const char *type, const char *cwd, char *env);
99 TSRM_API FILE *popen(const char *command, const char *type);
/PHP-5.3/Zend/
H A DOBJECTS2_HOWTO81 should set right type, function name and parameter mask for the
82 method. If the type is ZEND_OVERLOADED_FUNCTION, the method would be
119 handle is an ID of the object among the objects of the same type (not
120 class!). The type of the object and how it behaves is determined by
H A DZEND_CHANGES225 ability to use class type hints to declare the expected class of
256 These class type hints are not checked upon compilation, as would
693 is of a certain class or interface type.
1074 * true and false are now constants of type boolean.
1107 buffer. Header information (header(), content type, cookies) are
H A DZend.m423 AC_DEFINE_UNQUOTED([HAVE_]translit($1,a-z_-,A-Z__), 1,[Define if $1 type is present. ])
/PHP-5.3/Zend/RFCs/
H A D002.txt136 Optionally, the symbol type may be explicitly given to import (as
141 And finally, you may import all symbols of a given type:
H A D003.txt1 Title: Loose type requirements for functions
13 type (the array and variable function come to mind). For userland
17 correct type and reduce the need for duplicating the same code in
18 every function to check for the type of data.
25 not the type of the variable itself. The requirements for this would
59 Mis-matches in type should be reported as fatal errors and should halt
/PHP-5.3/Zend/tests/
H A D015.phpt26 Warning: Invalid error type specified in %s on line %d
29 Warning: Invalid error type specified in %s on line %d

Completed in 76 milliseconds

12345678910>>...69