Home
last modified time | relevance | path

Searched refs:opt (Results 26 – 50 of 55) sorted by relevance

123

/PHP-7.1/ext/standard/
H A Dbasic_functions.h155 PHPAPI int _php_error_log(int opt_err, char *message, char *opt, char *headers);
156 PHPAPI int _php_error_log_ex(int opt_err, char *message, size_t message_len, char *opt, char *heade…
H A Dbasic_functions.c4329 char opt[2] = { '\0' }; local
4452 opt[0] = o;
4453 optname = opt;
4738 char *message, *opt = NULL, *headers = NULL; local
4743 …if (zend_parse_parameters(argc, "s|lps", &message, &message_len, &erropt, &opt, &opt_len, &headers…
4751 if (_php_error_log_ex(opt_err, message, message_len, opt, headers) == FAILURE) {
4760 PHPAPI int _php_error_log(int opt_err, char *message, char *opt, char *headers) /* {{{ */ argument
4762 return _php_error_log_ex(opt_err, message, (opt_err == 3) ? strlen(message) : 0, opt, headers);
4766 PHPAPI int _php_error_log_ex(int opt_err, char *message, size_t message_len, char *opt, char *heade… argument
4774 if (!php_mail(opt, "PHP error_log message", message, headers, NULL)) {
[all …]
H A Dstring.c1664 zend_long opt = PHP_PATHINFO_ALL; local
1667 if (zend_parse_parameters(ZEND_NUM_ARGS(), "s|l", &path, &path_len, &opt) == FAILURE) {
1671 have_basename = ((opt & PHP_PATHINFO_BASENAME) == PHP_PATHINFO_BASENAME);
1675 if ((opt & PHP_PATHINFO_DIRNAME) == PHP_PATHINFO_DIRNAME) {
1689 if ((opt & PHP_PATHINFO_EXTENSION) == PHP_PATHINFO_EXTENSION) {
1705 if ((opt & PHP_PATHINFO_FILENAME) == PHP_PATHINFO_FILENAME) {
1724 if (opt == PHP_PATHINFO_ALL) {
/PHP-7.1/Zend/tests/
H A Ddebug_backtrace_options.phpt6 function backtrace_print($opt = null)
8 if(is_null($opt)) {
11 print_r(debug_backtrace($opt));
/PHP-7.1/ext/pgsql/
H A Dpgsql.c5852 assert(!(opt & ~PGSQL_CONV_OPTS));
6526 if (opt & PGSQL_DML_ASYNC) {
6627 if (opt & PGSQL_DML_ESCAPE) {
6644 if (opt & PGSQL_DML_ESCAPE) {
6685 else if (opt & PGSQL_DML_STRING) {
6799 if (opt & PGSQL_DML_ESCAPE) {
6814 if (opt & PGSQL_DML_ESCAPE) {
6898 if ((opt & PGSQL_DML_EXEC) && do_exec(&querystr, PGRES_COMMAND_OK, pg_link, opt) == 0) {
6900 } else if (opt & PGSQL_DML_STRING) {
6991 if ((opt & PGSQL_DML_EXEC) && do_exec(&querystr, PGRES_COMMAND_OK, pg_link, opt) == 0) {
[all …]
/PHP-7.1/ext/pdo_firebird/
H A Dconfig.m43 install directory [/opt/firebird]])
/PHP-7.1/ext/recode/
H A Dconfig.m49 RECODE_LIST="$PHP_RECODE /usr/local /usr /opt"
/PHP-7.1/ext/phar/phar/
H A Dclicommand.inc262 foreach($conf['select'] as $opt => $what) {
263 $ls = max($ls, strlen($opt));
267 foreach($conf['select'] as $opt => $what) {
268 … $inf .= $this->cli_wordwrap($sp2 . " " . sprintf("%-${ls}s ", $opt) . $what, $l3, $sp3) . "\n";
/PHP-7.1/
H A Dserver-tests.php633 $opt = $argv[$i++][1];
638 switch($opt) {
655 if ($this->xargs[$opt][1] && isset($value))
656 $this->conf[$this->xargs[$opt][0]] = $value;
657 else if (!$this->xargs[$opt][1])
658 $this->conf[$this->xargs[$opt][0]] = isset($value)?$value:1;
660 … $this->error("Invalid argument setting for argument $opt, should be [{$this->xargs[$opt][1]}]\n");
H A D.gitignore16 *.opt
H A DINSTALL432 The default directory is usually /opt/netscape/suitespot/. Please also
455 6. For the following step, make sure /opt/netscape/suitespot/ is where
459 --with-nsapi=/opt/netscape/suitespot/ \
480 will be something like /opt/netscape/suitespot/bin/libphp4.so. You
/PHP-7.1/ext/mysqlnd/
H A Dmysqlnd.h211 #define mysqlnd_options(conn, opt, value) ((conn)->data)->m->set_client_option((conn)->data, (opt),… argument
212 #define mysqlnd_options4(conn, opt, k, v) ((conn)->data)->m->set_client_option_2d((conn)->data, (op… argument
H A Dmysqlnd_vio.c447 int opt = PHP_STREAM_OPTION_BLOCKING; in MYSQLND_METHOD() local
449 int was_blocked = net_stream->ops->set_option(net_stream, opt, 0, NULL); in MYSQLND_METHOD()
462 net_stream->ops->set_option(net_stream, opt, 1, NULL); in MYSQLND_METHOD()
H A Dmysqlnd_net.c861 int opt = PHP_STREAM_OPTION_BLOCKING; in MYSQLND_METHOD() local
863 int was_blocked = net_stream->ops->set_option(net_stream, opt, 0, NULL); in MYSQLND_METHOD()
876 net_stream->ops->set_option(net_stream, opt, 1, NULL); in MYSQLND_METHOD()
/PHP-7.1/ext/mbstring/
H A Dphp_mbregex.c1497 OnigOptionType opt; in PHP_FUNCTION() local
1508 opt = 0; in PHP_FUNCTION()
1510 _php_mb_regex_init_options(string, string_len, &opt, &syntax, NULL); in PHP_FUNCTION()
1511 _php_mb_regex_set_options(opt, syntax, NULL, NULL); in PHP_FUNCTION()
1513 opt = MBREX(regex_default_options); in PHP_FUNCTION()
1516 _php_mb_regex_get_option_string(buf, sizeof(buf), opt, syntax); in PHP_FUNCTION()
H A Dmbstring.c3606 int opt, i; in PHP_FUNCTION() local
3633 opt = 0; in PHP_FUNCTION()
3638 opt |= 0x1; in PHP_FUNCTION()
3641 opt |= 0x10; in PHP_FUNCTION()
3644 opt |= 0x2; in PHP_FUNCTION()
3647 opt |= 0x20; in PHP_FUNCTION()
3650 opt |= 0x4; in PHP_FUNCTION()
3653 opt |= 0x40; in PHP_FUNCTION()
3656 opt |= 0x8; in PHP_FUNCTION()
3659 opt |= 0x80; in PHP_FUNCTION()
[all …]
/PHP-7.1/ext/filter/
H A Dfilter.c744 zval *option, *opt, *def; in PHP_FUNCTION() local
752 (opt = zend_hash_str_find(HASH_OF(filter_args), "options", sizeof("options") - 1)) != NULL && in PHP_FUNCTION()
753 Z_TYPE_P(opt) == IS_ARRAY && in PHP_FUNCTION()
754 (def = zend_hash_str_find(HASH_OF(opt), "default", sizeof("default") - 1)) != NULL) { in PHP_FUNCTION()
/PHP-7.1/scripts/dev/
H A Dgenerate-phpt.phar1256 public function __construct($opt) {
1257 $this->optionalSections = $opt;
1590 public function __construct($opt) {
1591 $this->optionalSections = $opt;
1650 public function __construct($opt) {
1651 $this->optionalSections = $opt;
1709 public function __construct($opt) {
1710 $this->optionalSections = $opt;
1811 public function __construct($opt) {
1812 $this->optionalSections = $opt;
[all …]
/PHP-7.1/ext/xml/
H A Dxml.c1589 zend_long opt; in PHP_FUNCTION() local
1591 if (zend_parse_parameters(ZEND_NUM_ARGS(), "rlz", &pind, &opt, &val) == FAILURE) { in PHP_FUNCTION()
1599 switch (opt) { in PHP_FUNCTION()
1642 zend_long opt; in PHP_FUNCTION() local
1644 if (zend_parse_parameters(ZEND_NUM_ARGS(), "rl", &pind, &opt) == FAILURE) { in PHP_FUNCTION()
1652 switch (opt) { in PHP_FUNCTION()
/PHP-7.1/ext/skeleton/
H A Dcreate_stubs16 opt = optionals[i,j]
/PHP-7.1/ext/bz2/
H A Dbz2.c636 static void php_bz2_error(INTERNAL_FUNCTION_PARAMETERS, int opt) in php_bz2_error() argument
660 switch (opt) { in php_bz2_error()
/PHP-7.1/ext/pdo/
H A Dpdo_dbh.c472 zval *options = NULL, *opt, *item, ctor_args; in PHP_METHOD() local
485 …if (ZEND_NUM_ARGS() > 1 && (opt = zend_hash_index_find(Z_ARRVAL_P(options), PDO_ATTR_STATEMENT_CLA… in PHP_METHOD()
486 if (Z_TYPE_P(opt) != IS_ARRAY || (item = zend_hash_index_find(Z_ARRVAL_P(opt), 0)) == NULL in PHP_METHOD()
510 if ((item = zend_hash_index_find(Z_ARRVAL_P(opt), 1)) != NULL) { in PHP_METHOD()
/PHP-7.1/sapi/phpdbg/
H A Dphpdbg.c1385 int php_optind, opt, show_banner = 1; in main() local
1452 opt = 0; in main()
1459 while ((opt = php_getopt(argc, argv, OPTIONS, &php_optarg, &php_optind, 0, 2)) != -1) { in main()
1460 switch (opt) { in main()
/PHP-7.1/ext/zip/
H A Dphp_zip.c1311 static void php_zip_entry_get_info(INTERNAL_FUNCTION_PARAMETERS, int opt) /* {{{ */ in php_zip_entry_get_info() argument
1328 switch (opt) { in php_zip_entry_get_info()
/PHP-7.1/ext/pcre/pcrelib/
H A DREADME179 CFLAGS='-O2 -Wall' ./configure --prefix=/opt/local
183 under /opt/local instead of the default /usr/local.

Completed in 150 milliseconds

123