Home
last modified time | relevance | path

Searched refs:what (Results 1 – 25 of 118) sorted by path

12345

/php-src/.github/ISSUE_TEMPLATE/
H A Dbug_report.yml8 …description: "Please provide a minimal way to reproduce the problem and describe what the expected…
/php-src/
H A DCODING_STANDARDS.md50 1. NEVER USE `strncat()`. If you're absolutely sure you know what you're doing,
56 macros it gives a better understanding on what kind of macro you're calling.
H A DCONTRIBUTING.md25 * [What happens after submitting contribution?](#what-happens-after-submitting-contribution)
26 * [What happens when your contribution is applied?](#what-happens-when-your-contribution-is-applied)
120 Submitting test scripts helps us to understand what functionality has changed.
144 about what you're working on, you can contact us via the
277 maintainer. Explain what has been changed by your patch. Test scripts should be
398 know what was modified. Definitely include the function name in the message
H A DUPGRADING.INTERNALS31 be more in line with what callbacks are returning.
/php-src/TSRM/
H A DTSRM.c107 # define tsrm_tls_set(what) TlsSetValue(tls_key, (void*)(what)) argument
111 # define tsrm_tls_set(what) pthread_setspecific(tls_key, (void*)(what)) argument
/php-src/Zend/tests/
H A Dbug30394.phpt7 public function __get( $what )
9 return $this->_p[ $what ];
12 public function __set( $what, $value )
14 $this->_p[ $what ] = $value;
H A Dbug54547.phpt14 /* not exactly what the bug is about, but closely related problem: */
H A Dbug60536_005.phpt14 // Protected and public are handle more strict with a warning then what is
H A Dbug71529.phpt10 function out($what) {
11 var_dump($what);
12 return $what;
/php-src/Zend/tests/traits/
H A Dproperty007.phpt14 // Protected and public are handle more strict with a warning then what is
/php-src/Zend/
H A Dzend_smart_string.h28 #define smart_string_appends_ex(str, src, what) \ argument
29 smart_string_appendl_ex((str), (src), strlen(src), (what))
32 #define smart_string_append_ex(str, src, what) \ argument
34 ((smart_string *)(src))->len, (what));
/php-src/build/
H A Dlibtool.m42764 ## what you are doing...
2942 # what "hidden" libraries, object files and flags are used when
3263 # what "hidden" libraries, object files and flags are used when
3345 # what "hidden" libraries, object files and flags are used when
3405 # what "hidden" libraries, object files and flags are used when
3521 # what "hidden" libraries, object files and flags are used when
3539 # what "hidden" libraries, object files and flags are used when
3584 # what "hidden" libraries, object files and flags are used when
3602 # what "hidden" libraries, object files and flags are used when
3683 # what "hidden" libraries, object files and flags are used when
[all …]
H A Dphp.m433 dnl PHP_DEF_HAVE(what)
1805 dnl Common setup macros: PHP_SETUP_<what>
H A Dpkg.m441 dnl See the "Since" comment for each macro you use to see what version
/php-src/docs-old/
H A Dstreams.md324 First, you need to figure out what data you need to associate with the
H A Dunix-build-system.md15 only what its name says
/php-src/docs/
H A Dmailinglist-rules.md34 4. Make sure you know what you are talking about. PHP is a very large project
44 6. If you are posting to an existing thread, make sure that you know what
H A Drelease-process.md880 of what this commit should include.
/php-src/docs/source/core/data-structures/
H A Dzval.rst8 implemented as a "tagged union", meaning it stores what type of value it contains, and the value
29 These simple integer constants determine what value is currently stored in a variable. If you are a
68 Remembering this is our job, and that's exactly what the ``IS_*`` constants are for.
222 value, no matter what the actual underlying type is. ``zend_value`` always consists of 8 bytes due
/php-src/docs/source/introduction/
H A Dhigh-level-overview.rst85 Here is a simplified example of what an AST from the tokens above might look like.
136 Here's what the surprisingly compact opcodes for the AST above might look like:
181 all of the phases, except for the execution phase. This is precisely what the opcache extension
/php-src/ext/bcmath/libbcmath/
H A DLICENSE56 that what they have is not the original version, so that the original
150 writing it). Whether that is true depends on what the Library does
151 and what the program that uses the Library does.
406 This section is intended to make thoroughly clear what is believed to
479 <one line to give the library's name and a brief idea of what it
/php-src/ext/curl/
H A Dinterface.c1903 php_stream *what = NULL; in _php_curl_setopt() local
1906what = (php_stream *)zend_fetch_resource2_ex(zvalue, "File-Handle", php_file_le_stream(), php_file… in _php_curl_setopt()
1907 if (!what) { in _php_curl_setopt()
1911 if (FAILURE == php_stream_cast(what, PHP_STREAM_AS_STDIO, (void *) &fp, REPORT_ERRORS)) { in _php_curl_setopt()
1923 if (!what) { in _php_curl_setopt()
1930 } else if (what->mode[0] != 'r' || what->mode[1] == '+') { in _php_curl_setopt()
1941 if (!what) { in _php_curl_setopt()
1948 } else if (what->mode[0] != 'r' || what->mode[1] == '+') { in _php_curl_setopt()
1959 if (!what) { in _php_curl_setopt()
1974 if (!what) { in _php_curl_setopt()
[all …]
/php-src/ext/curl/tests/
H A Dbug48207.phpt16 // Figure out what handler to use
H A Dcurl_setopt_array_basic.phpt16 // Figure out what handler to use
/php-src/ext/date/
H A Dphp_date.c5304 static int check_id_allowed(char *id, zend_long what) /* {{{ */ in check_id_allowed() argument
5306 …if ((what & PHP_DATE_TIMEZONE_GROUP_AFRICA) && strncasecmp(id, "Africa/", 7) == 0) return… in check_id_allowed()
5307 …if ((what & PHP_DATE_TIMEZONE_GROUP_AMERICA) && strncasecmp(id, "America/", 8) == 0) return… in check_id_allowed()
5308 …if ((what & PHP_DATE_TIMEZONE_GROUP_ANTARCTICA) && strncasecmp(id, "Antarctica/", 11) == 0) return… in check_id_allowed()
5309 …if ((what & PHP_DATE_TIMEZONE_GROUP_ARCTIC) && strncasecmp(id, "Arctic/", 7) == 0) return… in check_id_allowed()
5310 …if ((what & PHP_DATE_TIMEZONE_GROUP_ASIA) && strncasecmp(id, "Asia/", 5) == 0) return… in check_id_allowed()
5326 zend_long what = PHP_DATE_TIMEZONE_GROUP_ALL; in PHP_FUNCTION() local
5332 Z_PARAM_LONG(what) in PHP_FUNCTION()
5337 if (what == PHP_DATE_TIMEZONE_PER_COUNTRY && option_len != 2) { in PHP_FUNCTION()
5349 if (what == PHP_DATE_TIMEZONE_PER_COUNTRY) { in PHP_FUNCTION()
[all …]

Completed in 79 milliseconds

12345