Searched refs:z_script_name (Results 1 – 1 of 1) sorted by relevance
/PHP-5.3/ext/phar/ |
H A D | phar_object.c | 611 zval **z_script_name, **z_path_info; local 613 …SUCCESS != zend_hash_find(_server, "SCRIPT_NAME", sizeof("SCRIPT_NAME"), (void**)&z_script_name) || 614 IS_STRING != Z_TYPE_PP(z_script_name) || 615 !strstr(Z_STRVAL_PP(z_script_name), basename)) { 623 path_info = emalloc(Z_STRLEN_PP(z_script_name) + entry_len + 1); 624 memcpy(path_info, Z_STRVAL_PP(z_script_name), Z_STRLEN_PP(z_script_name)); 625 memcpy(path_info + Z_STRLEN_PP(z_script_name), entry, entry_len + 1); 630 path_info = Z_STRVAL_PP(z_script_name); 633 pt = estrndup(Z_STRVAL_PP(z_script_name), Z_STRLEN_PP(z_script_name));
|
Completed in 16 milliseconds