Home
last modified time | relevance | path

Searched refs:section (Results 51 – 75 of 80) sorted by relevance

1234

/PHP-7.0/
H A DINSTALL53 described in the What can PHP do? section:
80 section about writing command line PHP applications. In this case, you
90 From now on, this section deals with setting up PHP for web servers on
114 This section will guide you through the general configuration and
120 section, we are mainly dealing with web centric setups of PHP in this
121 section, although we will cover setting up PHP for command line usage
161 you can't figure out why, see the Problems section.
166 This section contains notes and hints specific to Apache 2.x installs
1076 compiled by the PHP Group (see next section for the download).
1149 section.
[all …]
H A DREADME.TESTING64 the 'SKIP' section. If the test is eligible for execution, the 'FILE'
65 section is extracted into a ".php" file (with the same name besides
H A DCONTRIBUTING.md50 Please note that the section on submitting pull requests is outdated: in
H A Dserver-tests.php1150 $section = '';
1155 $section = $r[1];
1156 $section_text[$section] = '';
1161 $section_text[$section] .= $line;
H A DCODING_STANDARDS211 variable declaration section and the statements in a block, as well as
H A Dphp.ini-development27 ; Directives following the section heading [PATH=/www/mysite] only
29 ; following the section heading [HOST=www.example.com] only apply to
1329 ; NOTE 2: See the section on garbage collection below if you choose to
H A Dphp.ini-production27 ; Directives following the section heading [PATH=/www/mysite] only
29 ; following the section heading [HOST=www.example.com] only apply to
1329 ; NOTE 2: See the section on garbage collection below if you choose to
/PHP-7.0/sapi/fpm/fpm/
H A Dfpm_conf.c1308 static void fpm_conf_ini_parser_section(zval *section, void *arg) /* {{{ */ in fpm_conf_ini_parser_section() argument
1315 if (!strcasecmp(Z_STRVAL_P(section), "global")) { in fpm_conf_ini_parser_section()
1323 if (!strcasecmp(wp->config->name, Z_STRVAL_P(section))) { in fpm_conf_ini_parser_section()
1333 … Unable to alloc a new WorkerPool for worker '%s'", ini_filename, ini_lineno, Z_STRVAL_P(section)); in fpm_conf_ini_parser_section()
1337 config->name = strdup(Z_STRVAL_P(section)); in fpm_conf_ini_parser_section()
1339 …loc memory for configuration name for worker '%s'", ini_filename, ini_lineno, Z_STRVAL_P(section)); in fpm_conf_ini_parser_section()
/PHP-7.0/tests/security/
H A Dopen_basedir.inc103 // Delete directories using a --CLEAN-- section!
/PHP-7.0/ext/mbstring/libmbfl/
H A DLICENSE201 Thus, it is not the intent of this section to claim rights or contest
387 If any portion of this section is held invalid or unenforceable under any
388 particular circumstance, the balance of the section is intended to apply,
389 and the section as a whole is intended to apply in other circumstances.
391 It is not the purpose of this section to induce you to infringe any
393 such claims; this section has the sole purpose of protecting the
402 This section is intended to make thoroughly clear what is believed to
/PHP-7.0/ext/standard/tests/dir/
H A Dopendir_variation2.phpt18 // create temporary directory for test, removed in CLEAN section
/PHP-7.0/ext/exif/
H A Dtest.txt223 …ld provide an <b>empty</b> comment, this is a comment section and not an IFD0, EXIF or GPS section
H A Dexif.c1401 static char *exif_get_sectionname(int section) in exif_get_sectionname() argument
1403 switch(section) { in exif_get_sectionname()
1422 static tag_table_type exif_get_tag_table(int section) in exif_get_tag_table() argument
1424 switch(section) { in exif_get_tag_table()
3309 int section, sn; in exif_scan_JPEG_header() local
3316 for(section=0;;section++) { in exif_scan_JPEG_header()
/PHP-7.0/ext/sockets/tests/
H A Dsocket_strerror.phpt106 string(31) ".lib section in a.out corrupted"
/PHP-7.0/ext/imap/
H A Dphp_imap.c301 ZEND_ARG_INFO(0, section)
309 ZEND_ARG_INFO(0, section)
414 ZEND_ARG_INFO(0, section)
2476 zend_string *section = NULL; in PHP_FUNCTION() local
2480 …if (SUCCESS != zend_parse_parameters(ZEND_NUM_ARGS(), "rzl|Sl", &stream, &out, &msgno, &section, &… in PHP_FUNCTION()
2512 mail_fetchbody_full(imap_ptr->imap_stream, msgno, section?ZSTR_VAL(section):"", NULL, flags); in PHP_FUNCTION()
3341 zend_string *section; in PHP_FUNCTION() local
3347 if (zend_parse_parameters(ZEND_NUM_ARGS(), "rlS", &streamind, &msg, &section) == FAILURE) { in PHP_FUNCTION()
3362 body=mail_body(imap_le_struct->imap_stream, msg, (unsigned char*)ZSTR_VAL(section)); in PHP_FUNCTION()
/PHP-7.0/Zend/RFCs/
H A D001.txt109 mentioned in this section as you will see in further sections which
/PHP-7.0/ext/standard/tests/file/
H A Dparse_ini_file.phpt14 ; Section starts with [<section name>]
/PHP-7.0/ext/standard/tests/general_functions/
H A Dparse_ini_string_001.phpt12 ; Section starts with [<section name>]
/PHP-7.0/ext/pcre/pcrelib/
H A DREADME98 concatenation of the text forms of all the section 3 man pages except
100 The other two are the text forms of the section 1 man pages for the
112 site (see next section).
164 in the section entitled "Using HP's ANSI C++ compiler (aCC)" below.
457 tests are given below in a separate section of this document.
617 override default - see section 7.1.2 of the C++ Using Guide"
619 - see section 7.1.2 of the C++ Using Guide"
/PHP-7.0/ext/pcre/pcrelib/doc/
H A Dpcre.txt146 tively. The remaining sections, except for the pcredemo section (which
469 UTF-8 strings that are described in the section entitled "Reason codes
1863 section on pcre_exec() options below.
3993 behaviour may not be what you want (see the next section).
5154 previous section.
6137 duplicate named subpatterns, as described in the next section.
6183 reset" subpattern, as described in the previous section.)
6232 a back reference (see next section)
7013 the next section.
7278 described in this section.
[all …]
/PHP-7.0/ext/mbstring/
H A DREADME_PHP3-i18n-ja23 section "Additional Notes."
293 Define these settings in the global section of php3.ini.
/PHP-7.0/ext/openssl/
H A DREADME150 not be included in the encoded section.
H A Dopenssl.c980 …x(const char * section_label, const char * config_filename, const char * section, LHASH_OF(CONF_VA… in php_openssl_config_check_syntax() argument
982 …tax(const char * section_label, const char * config_filename, const char * section, LHASH * config) in php_openssl_config_check_syntax()
989 if (!X509V3_EXT_add_conf(config, &ctx, (char *)section, NULL)) { in php_openssl_config_check_syntax()
992 section, in php_openssl_config_check_syntax()
/PHP-7.0/ext/gd/tests/
H A DRochester-Regular.otf.LICENSE.txt77 (except as stated in this section) patent license to make, have made,
/PHP-7.0/ext/intl/doc/
H A DTutorial.txt49 settings. Performance specific impacts are discussed in the Performance section below.

Completed in 168 milliseconds

1234