mirror of
https://github.com/php/php-src.git
synced 2025-01-26 13:44:22 +08:00
typos in comments and other minor improvements
This commit is contained in:
parent
d04a797cc6
commit
3cf1565d90
@ -15,5 +15,5 @@ function test: mysqli_character_set_name
|
||||
|
||||
mysqli_close($link);
|
||||
?>
|
||||
--EXPECT--
|
||||
string(6) "latin1"
|
||||
--EXPECTF--
|
||||
string(%d) "%s"
|
||||
|
@ -14,7 +14,6 @@ output_handler=
|
||||
echo "\n";
|
||||
|
||||
/* Binary Data Test */
|
||||
@unlink($pwd . '/passthru_test');
|
||||
|
||||
$cmd = $php . ' -n -r \"readfile(@getenv(\'TEST_PHP_EXECUTABLE\')); \"';
|
||||
$cmd = $php . ' -n -r \' passthru("'.$cmd.'"); \' > '.$tmpfile ;
|
||||
|
@ -232,12 +232,12 @@ php_apache_sapi_register_variables(zval *track_vars_array TSRMLS_DC)
|
||||
php_struct *ctx = SG(server_context);
|
||||
const apr_array_header_t *arr = apr_table_elts(ctx->r->subprocess_env);
|
||||
char *key, *val;
|
||||
|
||||
|
||||
APR_ARRAY_FOREACH_OPEN(arr, key, val)
|
||||
if (!val) val = "";
|
||||
php_register_variable(key, val, track_vars_array TSRMLS_CC);
|
||||
APR_ARRAY_FOREACH_CLOSE()
|
||||
|
||||
|
||||
php_register_variable("PHP_SELF", ctx->r->uri, track_vars_array TSRMLS_CC);
|
||||
}
|
||||
|
||||
@ -525,7 +525,7 @@ normal:
|
||||
|
||||
/* Setup the CGI variables if this is the main request */
|
||||
if (r->main == NULL ||
|
||||
/* .. or if the sub-request envinronment differs from the main-request. */
|
||||
/* .. or if the sub-request environment differs from the main-request. */
|
||||
r->subprocess_env != r->main->subprocess_env
|
||||
) {
|
||||
/* setup standard CGI variables */
|
||||
|
Loading…
Reference in New Issue
Block a user