Home
last modified time | relevance | path

Searched refs:opt (Results 26 – 37 of 37) sorted by path

12

/PHP-7.4/ext/soap/tests/bugs/
H A Dbug34643.phpt12 public function get_it($opt="zzz") {
13 return $opt;
44 [0] => string get_it(string $opt)
H A Dbug38005.phpt14 function __construct($wsdl, $opt) {
15 parent::__construct($wsdl, $opt);
16 $this->server = new SoapServer($wsdl, $opt);
H A Dbug38067.phpt16 function __construct($wsdl, $opt) {
17 parent::__construct($wsdl, $opt);
18 $this->server = new SoapServer($wsdl, $opt);
/PHP-7.4/ext/sodium/
H A Dsodium_pwhash.c44 zval *opt; in get_options() local
51 if ((opt = zend_hash_str_find(options, "memory_cost", strlen("memory_cost")))) { in get_options()
52 zend_long smemlimit = zval_get_long(opt); in get_options()
60 if ((opt = zend_hash_str_find(options, "time_cost", strlen("time_cost")))) { in get_options()
61 *opslimit = zval_get_long(opt); in get_options()
67 …if ((opt = zend_hash_str_find(options, "threads", strlen("threads"))) && (zval_get_long(opt) != 1)… in get_options()
/PHP-7.4/ext/standard/
H A Dbasic_functions.c4362 char opt[2] = { '\0' }; local
4489 opt[0] = o;
4490 optname = opt;
4800 char *message, *opt = NULL, *headers = NULL; local
4809 Z_PARAM_PATH(opt, opt_len)
4817 if (_php_error_log_ex(opt_err, message, message_len, opt, headers) == FAILURE) {
4826 PHPAPI int _php_error_log(int opt_err, char *message, char *opt, char *headers) /* {{{ */ argument
4828 return _php_error_log_ex(opt_err, message, (opt_err == 3) ? strlen(message) : 0, opt, headers);
4832 PHPAPI int _php_error_log_ex(int opt_err, char *message, size_t message_len, char *opt, char *heade… argument
4840 if (!php_mail(opt, "PHP error_log message", message, headers, NULL)) {
[all …]
H A Dbasic_functions.h157 PHPAPI int _php_error_log(int opt_err, char *message, char *opt, char *headers);
158 PHPAPI int _php_error_log_ex(int opt_err, char *message, size_t message_len, char *opt, char *heade…
H A Dstring.c1677 zend_long opt = PHP_PATHINFO_ALL; local
1683 Z_PARAM_LONG(opt)
1686 have_basename = ((opt & PHP_PATHINFO_BASENAME) == PHP_PATHINFO_BASENAME);
1690 if ((opt & PHP_PATHINFO_DIRNAME) == PHP_PATHINFO_DIRNAME) {
1704 if ((opt & PHP_PATHINFO_EXTENSION) == PHP_PATHINFO_EXTENSION) {
1720 if ((opt & PHP_PATHINFO_FILENAME) == PHP_PATHINFO_FILENAME) {
1739 if (opt == PHP_PATHINFO_ALL) {
/PHP-7.4/ext/tidy/tests/
H A D007.phpt17 var_dump($a->getopt('bogus-opt'));
25 Warning: tidy::getOpt(): Unknown Tidy Configuration Option 'bogus-opt' in %s007.php on line 10
/PHP-7.4/ext/tidy/
H A Dtidy.c543 TidyOption opt = tidyGetOptionByName(doc, optname); in _php_tidy_set_tidy_opt() local
547 if (!opt) { in _php_tidy_set_tidy_opt()
552 if (tidyOptIsReadOnly(opt)) { in _php_tidy_set_tidy_opt()
557 switch(tidyOptGetType(opt)) { in _php_tidy_set_tidy_opt()
569 if (tidyOptSetInt(doc, tidyOptGetId(opt), lval)) { in _php_tidy_set_tidy_opt()
967 *type = tidyOptGetType(opt); in php_tidy_get_opt_val()
1418 TidyOption opt; in PHP_FUNCTION() local
1436 if (!opt) { in PHP_FUNCTION()
1469 opt_name = (char *)tidyOptGetName(opt); in PHP_FUNCTION()
1578 TidyOption opt; in PHP_FUNCTION() local
[all …]
/PHP-7.4/ext/xml/
H A Dxml.c1619 zend_long opt; in PHP_FUNCTION() local
1621 if (zend_parse_parameters(ZEND_NUM_ARGS(), "rlz", &pind, &opt, &val) == FAILURE) { in PHP_FUNCTION()
1629 switch (opt) { in PHP_FUNCTION()
1672 zend_long opt; in PHP_FUNCTION() local
1674 if (zend_parse_parameters(ZEND_NUM_ARGS(), "rl", &pind, &opt) == FAILURE) { in PHP_FUNCTION()
1682 switch (opt) { in PHP_FUNCTION()
/PHP-7.4/ext/zip/
H A Dphp_zip.c1345 static void php_zip_entry_get_info(INTERNAL_FUNCTION_PARAMETERS, int opt) /* {{{ */ in php_zip_entry_get_info() argument
1362 switch (opt) { in php_zip_entry_get_info()
/PHP-7.4/sapi/phpdbg/
H A Dphpdbg.c1377 int php_optind, opt, show_banner = 1; in main() local
1447 opt = 0; in main()
1454 while ((opt = php_getopt(argc, argv, OPTIONS, &php_optarg, &php_optind, 0, 2)) != -1) { in main()
1455 switch (opt) { in main()

Completed in 58 milliseconds

12