Home
last modified time | relevance | path

Searched refs:what (Results 76 – 100 of 144) sorted by relevance

123456

/PHP-5.5/ext/zlib/tests/
H A Dgzdeflate_error1.phpt18 * add a comment here to say what the test is supposed to do
/PHP-5.5/ext/curl/
H A Dinterface.c2381 void *what = NULL; in _php_curl_setopt() local
2384what = zend_fetch_resource(zvalue TSRMLS_CC, -1, "File-Handle", &type, 1, php_file_le_stream(), ph… in _php_curl_setopt()
2385 if (!what) { in _php_curl_setopt()
2389 …if (FAILURE == php_stream_cast((php_stream *) what, PHP_STREAM_AS_STDIO, (void *) &fp, REPORT_ERRO… in _php_curl_setopt()
2401 if (!what) { in _php_curl_setopt()
2408 } else if (((php_stream *) what)->mode[0] != 'r' || ((php_stream *) what)->mode[1] == '+') { in _php_curl_setopt()
2422 if (!what) { in _php_curl_setopt()
2429 } else if (((php_stream *) what)->mode[0] != 'r' || ((php_stream *) what)->mode[1] == '+') { in _php_curl_setopt()
2443 if (!what) { in _php_curl_setopt()
2461 if (!what) { in _php_curl_setopt()
[all …]
/PHP-5.5/ext/pdo_mysql/tests/
H A Dpdo_mysql_prepare_emulated_placeholder_everywhere.phpt25 // So, what will happen? More placeholder but values and
H A Dpdo_mysql_prepare_load_data.phpt78 // However, you get an error and the big question is what happens to the line
H A Dpdo_mysql_attr_case.phpt28 // lets see what the default is...
/PHP-5.5/sapi/tux/
H A DREADME19 web-root through the parser; so be careful what you put
/PHP-5.5/ext/date/
H A Dphp_date.c353 ZEND_ARG_INFO(0, what)
4464 static int check_id_allowed(char *id, long what) in check_id_allowed() argument
4466 if (what & PHP_DATE_TIMEZONE_GROUP_AFRICA && strncasecmp(id, "Africa/", 7) == 0) return 1; in check_id_allowed()
4467 if (what & PHP_DATE_TIMEZONE_GROUP_AMERICA && strncasecmp(id, "America/", 8) == 0) return 1; in check_id_allowed()
4468 if (what & PHP_DATE_TIMEZONE_GROUP_ANTARCTICA && strncasecmp(id, "Antarctica/", 11) == 0) return 1; in check_id_allowed()
4469 if (what & PHP_DATE_TIMEZONE_GROUP_ARCTIC && strncasecmp(id, "Arctic/", 7) == 0) return 1; in check_id_allowed()
4470 if (what & PHP_DATE_TIMEZONE_GROUP_ASIA && strncasecmp(id, "Asia/", 5) == 0) return 1; in check_id_allowed()
4488 long what = PHP_DATE_TIMEZONE_GROUP_ALL; in PHP_FUNCTION() local
4497 if (what == PHP_DATE_TIMEZONE_PER_COUNTRY && option_len != 2) { in PHP_FUNCTION()
4509 if (what == PHP_DATE_TIMEZONE_PER_COUNTRY) { in PHP_FUNCTION()
[all …]
/PHP-5.5/ext/oci8/tests/
H A Ddrcp_connect1.phpt62 // value returned is what is set by pconn1
/PHP-5.5/ext/mysqli/tests/
H A Dmysqli_debug_append.phpt77 // what will happen if we create new trace entries...?
H A Dbug49442.phpt68 …At this point 'persistent' is not to be confused with what a user calls a 'persistent' - in this c…
H A Dmysqli_driver.phpt92 …/* TODO - more report testing should go in here, but it's not really documented what behaviour is …
H A Dmysqli_query_unicode.phpt89 Trying to test what Ramil suggests in http://bugs.mysql.com/bug.php?id=29576
/PHP-5.5/ext/standard/tests/file/
H A Duserstreams.phpt21 call me what you will
37 call me what you will
/PHP-5.5/ext/spl/tests/
H A Dclass_implements_variation2.phpt5 /* Prototype : array class_implements(mixed what [, bool autoload ])
H A Dclass_uses_variation2.phpt5 /* Prototype : array class_uses(mixed what [, bool autoload ])
H A Dclass_implements_variation1.phpt5 /* Prototype : array class_implements(mixed what [, bool autoload ])
H A Dclass_uses_variation1.phpt5 /* Prototype : array class_uses(mixed what [, bool autoload ])
/PHP-5.5/ext/pdo_oci/tests/
H A Dpdo_oci_attr_autocommit_2.phpt90 // Open new connection to really verify what was inserted
/PHP-5.5/ext/openssl/
H A Dopenssl.c1249 void * what; in php_openssl_x509_from_zval() local
1253 if (!what) { in php_openssl_x509_from_zval()
1261 return (X509*)what; in php_openssl_x509_from_zval()
2368 void * what; in php_openssl_csr_from_zval() local
2372 if (what) { in php_openssl_csr_from_zval()
2376 return (X509_REQ*)what; in php_openssl_csr_from_zval()
2825 void * what; in php_openssl_evp_from_zval() local
2829 if (!what) { in php_openssl_evp_from_zval()
2837 cert = (X509*)what; in php_openssl_evp_from_zval()
2842 is_priv = php_openssl_is_private_key((EVP_PKEY*)what TSRMLS_CC); in php_openssl_evp_from_zval()
[all …]
/PHP-5.5/
H A DREADME.EXT_SKEL39 But if you already have planned the overall scheme of your module, what
137 know what to expect.
H A DCODING_STANDARDS52 5. NEVER USE strncat(). If you're absolutely sure you know what you're doing,
58 ``ZEND_*`` macros it gives a better understanding on what kind of macro
240 prototype before it along with a brief one-line description of what the
/PHP-5.5/ext/pdo_odbc/
H A Dodbc_stmt.c763 S->einfo.what = "setAttribute"; in odbc_stmt_set_param()
795 S->einfo.what = "getAttribute"; in odbc_stmt_get_attr()
/PHP-5.5/ext/standard/
H A Dstring.c805 PHPAPI char *php_trim(char *c, int len, char *what, int what_len, zval *return_value, int mode TSRM… in php_trim() argument
811 if (what) { in php_trim()
812 php_charmask((unsigned char*)what, what_len, mask TSRMLS_CC); in php_trim()
853 char *what = NULL; in php_do_trim() local
856 …if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s|s", &str, &str_len, &what, &what_len) == F… in php_do_trim()
860 php_trim(str, str_len, what, what_len, return_value, mode TSRMLS_CC); in php_do_trim()
3347 char *str, *what; local
3350 …if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "ss", &str, &str_len, &what, &what_len) == FA…
3362 …Z_STRVAL_P(return_value) = php_addcslashes(str, str_len, &Z_STRLEN_P(return_value), 0, what, what_…
3515 wlength = strlen(what);
[all …]
/PHP-5.5/sapi/apache_hooks/
H A DREADME204 function/class declarations there (in fact that's what it's for).
/PHP-5.5/ext/pdo_odbc/tests/
H A Dlong_columns.phpt72 …MS SQL server (works with Access, MyODBC), which is a separate failure, feature/code-path from what

Completed in 99 milliseconds

123456