Home
last modified time | relevance | path

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

12345678910>>...81

/PHP-7.0/
H A D.gdbinit95 set $type = $zvalue->u1.v.type
127 printf "unknown type %d", $type
163 set $type = $zvalue->u1.v.type
166 if $type > 5 && $type != 15
170 if $type == 0
173 if $type == 1
176 if $type == 2
179 if $type == 3
205 if $type == 8
237 if $type == 9
[all …]
H A DINSTALL288 type ./configure --help in the corresponding source tree.
476 type=magnus-internal/x-httpd-php exts=php
512 ObjectType fn="force-type" type="magnus-internal/x-httpd-php"
590 corresponding default Service line for type="magnus-internal/directory"
912 The standard installation type is using mod_php, and enabling the
925 type the following into the Terminal Application (after, it will
1517 PHP_INI_ALL and PHP_INI_PERDIR type directives. To clear a
1525 with PHP_INI_ALL and PHP_INI_PERDIR type directives.
1529 in .htaccess files. Any directive type set with php_admin_value
1535 used in .htaccess files. Any directive type set with
[all …]
H A DNEWS1533 type 'unknown'). (Laruence)
1724 type = inet). (Anatol)
2124 to not be accepted as type name. (Bob)
2154 element type). (Laruence)
2230 . Fixed bug #70557 (Memleak on return type verifying failed). (Laruence)
2284 . Fixed bug #70117 (Unexpected return type error). (Laruence)
2346 . Fixed bug #69767 (Default parameter value with wrong type segfaults).
2435 . Update the MIME type list from the one shipped by Apache HTTPD. (Adam)
2444 . Fixed bug #70163 (curl_setopt_array() type confusion). (Laruence)
2610 type and an explicit cast). (Laruence)
[all …]
H A DREADME.EXT_SKEL97 If possible, the function definition should also contain it's return type
135 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
45 The following list shows the type specifier, its meaning and the parameter
63 o - object of any type (zval*)
64 O - object of specific type given by class entry (zval*, zend_class_entry)
80 ! - the parameter it follows can be of specified type or NULL. If NULL is
81 passed and the output for such type is a pointer, then the output
83 For 'b', 'l' and 'd', an extra argument of type zend_bool* must be
91 Please note that since version 7 PHP uses zend_long as integer type and
157 * 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_PATCH62 attachments of type 'text/*' are accepted.
87 of type 'text/*' are accepted.
117 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 DUPGRADING334 In particular, it is no longer possible to ignore type hint failures.
557 . Added support for scalar type declarations and strict mode using
587 . Added a ReflectionType class to better support the new return type and
588 scalar type declarations features. The new ReflectionParameter::getType()
751 The shmop identifiers have been changed from ints to resources of type shmop.
842 . Error messages for zend_parse_parameters, type hints and conversions now
H A DUPGRADING.INTERNALS47 was introduced. It expects an argument of the type zend_string *. String lengths
52 Integers do no more depend on the firm 'long' type. Instead a platform
53 dependent integer type is used, it is called zend_long. That datatype is
78 The new spec 'S' introduced, which expects an argument of type zend_string *.
79 The 'l' spec expects a parameter of the type zend_long, not long anymore.
80 The 's' spec expects parameters of the type char * and size_t, no int anymore.
/PHP-7.0/TSRM/
H A DTSRM.h168 #define TSRMG(id, type, element) (TSRMG_BULK(id, type)->element) argument
169 #define TSRMG_BULK(id, type) ((type) (*((void ***) tsrm_get_ls_cache()))[TSRM_UNSHUFFLE_RSRC_ID(id)… argument
171 #define TSRMG_STATIC(id, type, element) (TSRMG_BULK_STATIC(id, type)->element) argument
172 #define TSRMG_BULK_STATIC(id, type) ((type) (*((void ***) TSRMLS_CACHE))[TSRM_UNSHUFFLE_RSRC_ID(id)… argument
199 #define TSRMG_STATIC(id, type, element) 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_win32.c215 DWORD type; in tsrm_win32_access() local
216 return GetBinaryType(pathname, &type) ? 0 : -1; in tsrm_win32_access()
452 TSRM_API FILE *popen(const char *command, const char *type) in popen() argument
455 return popen_ex(command, type, NULL, NULL); in popen()
458 TSRM_API FILE *popen_ex(const char *command, const char *type, const char *cwd, char *env) in popen_ex() argument
471 char *ptype = (char *)type; in popen_ex()
476 if (!type) { in popen_ex()
481 type_len = (int)strlen(type); in popen_ex()
508 read = (type[0] == 'r') ? TRUE : FALSE; in popen_ex()
509 mode = ((type_len == 2) && (type[1] == 'b')) ? O_BINARY : O_TEXT; in popen_ex()
[all …]
H A Dtsrm_win32.h102 TSRM_API FILE *popen_ex(const char *command, const char *type, const char *cwd, char *env);
103 TSRM_API FILE *popen(const char *command, const char *type);
/PHP-7.0/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-7.0/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-7.0/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
H A D019.phpt1189 resource(%d) of type (stream)
1193 resource(%d) of type (stream)
1202 resource(%d) of type (stream)
1206 resource(%d) of type (stream)
H A D030.phpt57 ["type"]=>

Completed in 132 milliseconds

12345678910>>...81