Home
last modified time | relevance | path

Searched refs:env (Results 1 – 25 of 153) sorted by last modified time

1234567

/PHP-7.4/
H A DNEWS499 SCRIPT_FILENAME env). (Jakub Zelenka)
H A Drun-tests.php2062 $env['REDIRECT_STATUS'] = '';
2063 $env['QUERY_STRING'] = '';
2064 $env['PATH_TRANSLATED'] = '';
2065 $env['SCRIPT_FILENAME'] = '';
2066 $env['REQUEST_METHOD'] = '';
2067 $env['CONTENT_TYPE'] = '';
2068 $env['CONTENT_LENGTH'] = '';
2069 $env['TZ'] = '';
2285 $env['REDIRECT_STATUS'] = '1';
2299 $env['HTTP_COOKIE'] = '';
[all …]
H A D.travis.yml58 env:
71 - env: ENABLE_MAINTAINER_ZTS=0 ENABLE_DEBUG=0
74 - env: ENABLE_MAINTAINER_ZTS=1 ENABLE_DEBUG=1
77 - env: ENABLE_MAINTAINER_ZTS=1 ENABLE_DEBUG=1 SKIP_IO_CAPTURE_TESTS=1 ARM64=1
H A Dphp.ini-development788 ; http://php.net/cgi.redirect-status-env
H A Dphp.ini-production788 ; http://php.net/cgi.redirect-status-env
/PHP-7.4/main/
H A Dphp_variables.c566 p = strchr(env, '='); in import_environment_variable()
568 || p == env in import_environment_variable()
569 || !valid_environment_name(env, p)) { in import_environment_variable()
573 name_len = p - env; in import_environment_variable()
583 if (ZEND_HANDLE_NUMERIC_STR(env, name_len, idx)) { in import_environment_variable()
586 php_register_variable_quick(env, name_len, &val, ht); in import_environment_variable()
593 char **env; in _php_import_environment_variables() local
595 char *environment, *env; in _php_import_environment_variables()
601 for (env = environ; env != NULL && *env != NULL; env++) { in _php_import_environment_variables()
606 for (env = environment; env != NULL && *env; env += strlen(env) + 1) { in _php_import_environment_variables()
[all …]
/PHP-7.4/TSRM/
H A Dtsrm_win32.c448 TSRM_API FILE *popen_ex(const char *command, const char *type, const char *cwd, char *env) in popen_ex() argument
550 envw = php_win32_cp_env_any_to_w(env); in popen_ex()
554 if (env) { in popen_ex()
/PHP-7.4/ext/imap/
H A Dphp_imap.c2731 ENVELOPE *env; in PHP_FUNCTION() local
2737 env = mail_newenvelope(); in PHP_FUNCTION()
2746 addresstmp = env->to; in PHP_FUNCTION()
2765 mail_free_envelope(&env); in PHP_FUNCTION()
3505 ENVELOPE *env; in PHP_FUNCTION() local
3512 if (env->subject) { in PHP_FUNCTION()
3515 if (env->from) { in PHP_FUNCTION()
3516 env->from->next=NULL; in PHP_FUNCTION()
3522 if (env->to) { in PHP_FUNCTION()
3529 if (env->date) { in PHP_FUNCTION()
[all …]
/PHP-7.4/sapi/cgi/
H A Dcgi_main.c1606 char **env, *p, *q, *var, *val, *t = buf; local
1610 for (env = environ; env != NULL && *env != NULL; env++) {
1611 val = strchr(*env, '=');
1615 var_len = val - *env;
1620 var = *env;
/PHP-7.4/ext/standard/
H A Dinfo.c764 char **env, *tmp1, *tmp2; in php_print_info() local
959 for (env=environ; env!=NULL && *env !=NULL; env++) { in php_print_info()
960 tmp1 = estrdup(*env); in php_print_info()
H A Dbasic_functions.c1877 ZEND_ARG_INFO(0, env) /* ARRAY_INFO(0, env, 1) */
3493 char **env; in php_putenv_destructor()
3495 for (env = environ; env != NULL && *env != NULL; env++) { in php_putenv_destructor()
3496 if (!strncmp(*env, pe->key, pe->key_len) && (*env)[pe->key_len] == '=') { /* found it */ in php_putenv_destructor()
3497 *env = ""; in php_putenv_destructor()
4165 char *p, **env; local
4208 for (env = environ; env != NULL && *env != NULL; env++) {
4209 if (!strncmp(*env, pe.key, pe.key_len) && (*env)[pe.key_len] == '=') { /* found it */
4212 pe.previous_value = estrdup(*env);
4214 pe.previous_value = *env;
H A Dproc_open.c72 php_process_env_t env; in _php_array_to_envp() local
81 memset(&env, 0, sizeof(env)); in _php_array_to_envp()
84 return env; in _php_array_to_envp()
94 return env; in _php_array_to_envp()
147 return env; in _php_array_to_envp()
155 if (env.envarray) { in _php_free_envp()
159 if (env.envp) { in _php_free_envp()
484 php_process_env_t env; in PHP_FUNCTION() local
529 memset(&env, 0, sizeof(env)); in PHP_FUNCTION()
939 if (env.envp) { in PHP_FUNCTION()
[all …]
/PHP-7.4/sapi/litespeed/
H A Dlsapi_main.c223 char **env, *p, *t = buf; in litespeed_php_import_environment_variables() local
244 for (env = environ; env != NULL && *env != NULL; env++) { in litespeed_php_import_environment_variables()
245 p = strchr(*env, '='); in litespeed_php_import_environment_variables()
249 nlen = p - *env; in litespeed_php_import_environment_variables()
254 memcpy(t, *env, nlen); in litespeed_php_import_environment_variables()
H A Dlsapilib.c3793 char **env; in unset_lsapi_envs() local
3795 env = *_NSGetEnviron(); in unset_lsapi_envs()
3797 env = environ; in unset_lsapi_envs()
3799 while( env != NULL && *env != NULL ) in unset_lsapi_envs()
3801 if (!strncmp(*env, "LSAPI_", 6) || !strncmp( *env, "PHP_LSAPI_", 10 ) in unset_lsapi_envs()
3802 || (!strncmp( *env, "PHPRC=", 6 )&&(!s_uid))) in unset_lsapi_envs()
3804 char ** del = env; in unset_lsapi_envs()
3810 ++env; in unset_lsapi_envs()
/PHP-7.4/ext/mysqli/tests/
H A Dconnect.inc56 …* @param enable_env_flags Enable setting of connection flags through env(MYSQL_TEST_CONNECT_FLAGS…
76 … * @param enable_env_flags Enable setting of connection flags through env(MYSQL_TEST_CONNECT_FLAGS)
/PHP-7.4/win32/build/
H A Dconfutils.js590 var i, found = false, place = false, file, env;
613 env = WshShell.Environment("Process").Item(env_name);
614 env = env.split(";");
615 for (i = 0; i < env.length; i++) {
616 file = glob(env[i] + "\\" + thing_to_find);
/PHP-7.4/ext/soap/
H A Dsoap.c1623 xmlNodePtr env = get_node(doc_request->children,"Envelope"); local
1624 if (env && env->ns) {
1625 if (strcmp((char*)env->ns->href, SOAP_1_1_ENV_NAMESPACE) == 0) {
1627 } else if (strcmp((char*)env->ns->href,SOAP_1_2_ENV_NAMESPACE) == 0) {
3446 xmlNodePtr trav,env,head,body,func; local
3453 env = get_envelope(request->children, version, &envelope_ns);
3454 if (!env) {
3458 attr = env->properties;
3474 trav = env->children;
/PHP-7.4/ext/pdo_odbc/
H A Dodbc_driver.c87 eh = H->env; in pdo_odbc_error()
135 SQLFreeHandle(SQL_HANDLE_ENV, H->env); in odbc_handle_closer()
136 H->env = NULL; in odbc_handle_closer()
401 SQLAllocHandle(SQL_HANDLE_ENV, SQL_NULL_HANDLE, &H->env); in pdo_odbc_handle_factory()
402 rc = SQLSetEnvAttr(H->env, SQL_ATTR_ODBC_VERSION, (void*)SQL_OV_ODBC3, 0); in pdo_odbc_handle_factory()
411 rc = SQLSetEnvAttr(H->env, SQL_ATTR_CP_MATCH, (void*)pdo_odbc_pool_mode, 0); in pdo_odbc_handle_factory()
419 rc = SQLAllocHandle(SQL_HANDLE_DBC, H->env, &H->dbc); in pdo_odbc_handle_factory()
H A Dphp_pdo_odbc_int.h127 PDO_ODBC_HENV env; member
/PHP-7.4/ext/pdo_oci/
H A Doci_driver.c227 if (H->charset && H->env) { in oci_handle_closer()
228 OCIHandleFree(H->env, OCI_HTYPE_ENV); in oci_handle_closer()
229 H->env = NULL; in oci_handle_closer()
276 OCIHandleAlloc(H->env, (dvoid*)&S->stmt, OCI_HTYPE_STMT, 0, NULL); in oci_handle_preparer()
279 OCIHandleAlloc(H->env, (dvoid*)&S->err, OCI_HTYPE_ERROR, 0, NULL); in oci_handle_preparer()
325 OCIHandleAlloc(H->env, (dvoid*)&stmt, OCI_HTYPE_STMT, 0, NULL); in oci_handle_doer()
713 if (H->env == NULL) { in pdo_oci_handle_factory()
715 H->env = pdo_oci_Env; in pdo_oci_handle_factory()
719 OCIHandleAlloc(H->env, (dvoid **)&H->err, OCI_HTYPE_ERROR, 0, NULL); in pdo_oci_handle_factory()
722 OCIHandleAlloc(H->env, (dvoid **)&H->server, OCI_HTYPE_SERVER, 0, NULL); in pdo_oci_handle_factory()
[all …]
/PHP-7.4/ext/soap/tests/
H A Dbug79536.phpt10 <env:Envelope xmlns:env=\"http://schemas.xmlsoap.org/soap/envelope/\"
16 <env:Body>
20 </env:Body>
21 <env:Header/>
22 </env:Envelope>";
/PHP-7.4/sapi/fpm/
H A Dwww.conf.in278 ; it must be associated with embraces to specify the name of the env
392 ; by clearing the environment in workers before env vars specified in this
409 ; Default Value: clean env
410 ;env[HOSTNAME] = $HOSTNAME
411 ;env[PATH] = /usr/local/bin:/usr/bin:/bin
412 ;env[TMP] = /tmp
413 ;env[TMPDIR] = /tmp
414 ;env[TEMP] = /tmp
/PHP-7.4/win32/
H A Dcodepage.c400 PW32CP wchar_t *php_win32_cp_env_any_to_w(const char* env) in php_win32_cp_env_any_to_w() argument
403 char *cur = (char *)env, *prev; in php_win32_cp_env_any_to_w()
406 if (!env) { in php_win32_cp_env_any_to_w()
H A Dcodepage.h76 PW32CP wchar_t *php_win32_cp_env_any_to_w(const char* env);
/PHP-7.4/ext/dba/
H A Ddba_lmdb.c33 MDB_env *env; member
43 MDB_env *env; in DBA_OPEN_FUNC() local
61 rc = mdb_env_create(&env); in DBA_OPEN_FUNC()
75 rc = mdb_env_open(env, info->path, flags, mode); in DBA_OPEN_FUNC()
81 rc = mdb_txn_begin(env, NULL, 0, &txn); in DBA_OPEN_FUNC()
83 mdb_env_close(env); in DBA_OPEN_FUNC()
97 mdb_env_close(env); in DBA_OPEN_FUNC()
103 LMDB_IT(env) = env; in DBA_OPEN_FUNC()
113 mdb_dbi_close(LMDB_IT(env), LMDB_IT(dbi)); in DBA_CLOSE_FUNC()
114 mdb_env_close(LMDB_IT(env)); in DBA_CLOSE_FUNC()
[all …]

Completed in 145 milliseconds

1234567