Home
last modified time | relevance | path

Searched refs:conf (Results 1 – 25 of 39) sorted by relevance

12

/PHP-7.3/
H A Dserver-tests.php426 public $conf = array(); variable in testHarness
487 if (!$this->conf['TEST_BASE_PATH'] && $this->conf['TEST_PHP_SRCDIR'])
488 $this->conf['TEST_BASE_PATH'] = $this->conf['TEST_PHP_SRCDIR'];
491 $this->conf['TEST_BASE_PATH'] = str_replace('/','\\',$this->conf['TEST_BASE_PATH']);
630 $conf = NULL;
642 if (!isset($conf)) {
646 $this->conf = array_merge($this->conf,$conf);
670 if (!$this->conf['TEST_WEB'] && !$this->conf['TEST_PHP_EXECUTABLE']) {
766 $conf = '';
800 $this->conf['TEST_BASE_PATH'] == $this->conf['TEST_PHP_SRCDIR']) return;
[all …]
H A Dserver-tests-config.php10 $conf = array( variable
H A D.travis.yml58 - sudo sh -c 'echo 0 > /proc/sys/net/ipv6/conf/all/disable_ipv6'
/PHP-7.3/ext/opcache/tests/
H A Dblacklist-win32.phpt14 $conf = opcache_get_configuration();
15 $conf = $conf['blacklist'];
16 $conf[3] = preg_replace("!^\\Q".dirname(__FILE__)."\\E!", "__DIR__", $conf[3]);
17 $conf[4] = preg_replace("!^\\Q".dirname(__FILE__)."\\E!", "__DIR__", $conf[4]);
18 print_r($conf);
H A Dblacklist.phpt14 $conf = opcache_get_configuration();
15 $conf = $conf['blacklist'];
16 $conf[3] = preg_replace("!^\\Q".dirname(__FILE__)."\\E!", "__DIR__", $conf[3]);
17 $conf[4] = preg_replace("!^\\Q".dirname(__FILE__)."\\E!", "__DIR__", $conf[4]);
18 print_r($conf);
/PHP-7.3/ext/ldap/tests/
H A Dldap_connect_ldap_conf.phpt2 ldap_connect() - Connection using default host from openldap's ldap.conf
15 $conf=tempnam("/tmp","ldap.conf");
16 file_put_contents($conf, "uri ldaps://example.com:3141/");
17 putenv("LDAPCONF=$conf");
21 unlink($conf);
/PHP-7.3/sapi/fpm/
H A DMakefile.frag18 $(INSTALL_DATA) sapi/fpm/php-fpm.conf $(INSTALL_ROOT)$(sysconfdir)/php-fpm.conf.default; \
19 $(INSTALL_DATA) sapi/fpm/www.conf $(INSTALL_ROOT)$(sysconfdir)/php-fpm.d/www.conf.default; \
H A Dphp-fpm.service.in12 ExecStart=@EXPANDED_SBINDIR@/php-fpm --nodaemonize --fpm-config @EXPANDED_SYSCONFDIR@/php-fpm.conf
H A Dinit.d.php-fpm.in17 php_fpm_CONF=@sysconfdir@/php-fpm.conf
/PHP-7.3/ext/snmp/tests/
H A DREADME32 - Replace config file (by default this is /etc/snmp/snmpd.conf on Linux and
33 /usr/local/etc/snmp/snmpd.conf on FreeBSD) with snmpd.conf supplied.
35 Before launching daemon make sure that there is no file /var/net-snmp/snmpd.conf
38 - Place bigtest.sh near snmpd.conf, tune path to it in snmpd.conf
42 sudo snmpd -C -c ./snmpd.conf -f -Le
/PHP-7.3/ext/openssl/tests/
H A Dopenssl_csr_new_basic.phpt13 $conf = array('config' => dirname(__FILE__) . DIRECTORY_SEPARATOR . 'openssl.cnf');
14 var_dump(openssl_csr_new(array(), $a, $conf, array()));
19 var_dump(openssl_csr_new($a, $b, $conf));
22 $x = openssl_pkey_new($conf);
23 var_dump(openssl_csr_new(["countryName" => "DE"], $x, $conf + ["x509_extensions" => 0xDEADBEEF]));
H A Dbug73833.phpt10 $conf = ['config' => __DIR__ . DIRECTORY_SEPARATOR . 'openssl.cnf'];
13 $key = openssl_pkey_new($conf);
15 if (openssl_pkey_export($key, $privatePEM, $password, $conf) === false) {
H A D001.phpt12 $conf = array('config' => __DIR__ . DIRECTORY_SEPARATOR . 'openssl.cnf');
13 $privkey = openssl_pkey_new($conf);
27 if (!openssl_pkey_export_to_file($privkey, $key_file_name, $passphrase, $conf)) {
H A Dopenssl_free_key.phpt25 $conf = array('config' => dirname(__FILE__) . DIRECTORY_SEPARATOR . 'openssl.cnf');
26 $privkey = openssl_pkey_new($conf);
38 openssl_pkey_export_to_file($privkey, $key_file_name, $passphrase, $conf) or die("failed to export …
/PHP-7.3/ext/pspell/
H A Dpspell.c137 ZEND_ARG_INFO(0, conf)
142 ZEND_ARG_INFO(0, conf)
147 ZEND_ARG_INFO(0, conf)
152 ZEND_ARG_INFO(0, conf)
157 ZEND_ARG_INFO(0, conf)
162 ZEND_ARG_INFO(0, conf)
466 zend_long conf; in PHP_FUNCTION() local
753 zend_long conf; in PHP_FUNCTION() local
818 zend_long conf; in pspell_config_path() local
866 zend_long conf; in PHP_FUNCTION() local
[all …]
/PHP-7.3/sapi/apache2handler/
H A DREADME40 At the end of conf/httpd.conf, add:
54 place your php.ini file in Apache's ServerRoot/conf directory and
55 add this to your httpd.conf file:
57 PHPINIDir "conf"
H A Dphp_apache.h56 char *get_php_config(void *conf, char *name, size_t name_len);
H A Dapache_config.c176 char *get_php_config(void *conf, char *name, size_t name_len) in get_php_config() argument
178 php_conf_rec *d = conf; in get_php_config()
/PHP-7.3/ext/phar/phar/
H A Dclicommand.inc245 foreach(call_user_func($func, $l, $sp) as $arg => $conf) {
246 if ((isset($conf['required']) && $conf['required']) != $required) {
258 $inf .= $this->cli_wordwrap($sp . $arg . $conf['inf'], $l2, $sp2) . "\n";
260 if (isset($conf['select']) && count($conf['select'])) {
262 foreach($conf['select'] as $opt => $what) {
267 foreach($conf['select'] as $opt => $what) {
/PHP-7.3/sapi/fpm/fpm/
H A Dfpm_conf.c358 *conf = LOG_AUTH; in fpm_conf_set_syslog_facility()
372 *conf = LOG_CRON; in fpm_conf_set_syslog_facility()
379 *conf = LOG_DAEMON; in fpm_conf_set_syslog_facility()
386 *conf = LOG_FTP; in fpm_conf_set_syslog_facility()
393 *conf = LOG_KERN; in fpm_conf_set_syslog_facility()
400 *conf = LOG_LPR; in fpm_conf_set_syslog_facility()
407 *conf = LOG_MAIL; in fpm_conf_set_syslog_facility()
414 *conf = LOG_NEWS; in fpm_conf_set_syslog_facility()
421 *conf = LOG_SYSLOG; in fpm_conf_set_syslog_facility()
428 *conf = LOG_USER; in fpm_conf_set_syslog_facility()
[all …]
/PHP-7.3/ext/pdo/tests/
H A Dpdo_test.inc14 $conf = eval($common);
15 foreach($conf['ENV'] as $n=>$v) putenv("$n=$v");
/PHP-7.3/sapi/tests/
H A Dtest002.phpt15 SCRIPT_FILENAME=$this->conf['TEST_PHP_EXECUTABLE']
H A Dtest004.phpt19 SCRIPT_FILENAME=$this->conf['TEST_PHP_EXECUTABLE']
/PHP-7.3/ext/pdo_dblib/
H A DREADME23 it's best to use the DSN (rather than freetds.conf, etc.) to set the version.
/PHP-7.3/ext/imap/tests/
H A DREADME8 … with a fairly minimal dovecot installation. For information, the dovecot.conf file used in runnin…

Completed in 44 milliseconds

12