/PHP-8.0/ext/pdo_odbc/ |
H A D | php_pdo_odbc_int.h | 120 const char *file, *what; member 167 void pdo_odbc_error(pdo_dbh_t *dbh, pdo_stmt_t *stmt, PDO_ODBC_HSTMT statement, char *what, const c… 168 #define pdo_odbc_drv_error(what) pdo_odbc_error(dbh, NULL, SQL_NULL_HSTMT, what, __FILE__, __LINE__) argument 169 #define pdo_odbc_stmt_error(what) pdo_odbc_error(stmt->dbh, stmt, SQL_NULL_HSTMT, what, __FILE__, _… argument 170 #define pdo_odbc_doer_error(what) pdo_odbc_error(dbh, NULL, stmt, what, __FILE__, __LINE__) argument
|
H A D | odbc_driver.c | 44 einfo->what, (long) einfo->last_error, in pdo_odbc_fetch_error_func() 55 void pdo_odbc_error(pdo_dbh_t *dbh, pdo_stmt_t *stmt, PDO_ODBC_HSTMT statement, char *what, const c… in pdo_odbc_error() argument 98 einfo->what = what; in pdo_odbc_error() 104 *pdo_err, what, einfo->last_error, einfo->last_err_msg); in pdo_odbc_error() 209 H->einfo.what = S->einfo.what; in odbc_handle_preparer() 347 H->einfo.what = "setAttribute"; in odbc_handle_set_attr()
|
/PHP-8.0/Zend/tests/ |
H A D | bug30394.phpt | 7 public function __get( $what ) 9 return $this->_p[ $what ]; 12 public function __set( $what, $value ) 14 $this->_p[ $what ] = $value;
|
H A D | bug71529.phpt | 10 function out($what) { 11 var_dump($what); 12 return $what;
|
/PHP-8.0/scripts/dev/ |
H A D | credits | 12 for what in ext sapi 14 file=ext/standard/credits_$what.h 30 files=`find "$what" -name CREDITS | grep -v "$what"/skeleton/CREDITS`
|
/PHP-8.0/ext/readline/ |
H A D | readline.c | 143 char *what = NULL; in PHP_FUNCTION() local 152 if (!what) { in PHP_FUNCTION() 180 if (!strcasecmp(what,"line_buffer")) { in PHP_FUNCTION() 190 } else if (!strcasecmp(what, "point")) { in PHP_FUNCTION() 193 } else if (!strcasecmp(what, "end")) { in PHP_FUNCTION() 197 } else if (!strcasecmp(what, "mark")) { in PHP_FUNCTION() 199 } else if (!strcasecmp(what, "done")) { in PHP_FUNCTION() 205 } else if (!strcasecmp(what, "pending_input")) { in PHP_FUNCTION() 214 } else if (!strcasecmp(what, "prompt")) { in PHP_FUNCTION() 216 } else if (!strcasecmp(what, "terminal_name")) { in PHP_FUNCTION() [all …]
|
/PHP-8.0/ext/tokenizer/tests/ |
H A D | PhpToken_toString.phpt | 6 $tokens = PhpToken::tokenize('<?php echo "Hello ". $what;'); 15 string(27) "<?php echo "Hello ". $what;"
|
/PHP-8.0/ext/reflection/tests/ |
H A D | bug75186.phpt | 11 function($what) { echo "Hello $what!\n"; },
|
/PHP-8.0/ext/simplexml/tests/ |
H A D | 000.phpt | 10 function test($what) 13 echo "===$what\n"; 14 eval("var_dump(isset(\$$what));"); 15 eval("var_dump((bool)\$$what);"); 16 eval("if (isset(\$$what)) var_dump(count(\$$what));"); 17 eval("var_dump(\$$what);");
|
/PHP-8.0/ext/phar/tests/cache_list/files/ |
H A D | phar_test.inc | 24 foreach(array('comp','crc32','clen','ulen','time','flags','perm','meta','cont') as $what) 26 if (isset($cont[$what])) 28 $$what = $cont[$what];
|
/PHP-8.0/ext/phar/tests/files/ |
H A D | phar_test.inc | 24 foreach(array('comp','crc32','clen','ulen','time','flags','perm','meta','cont') as $what) 26 if (isset($cont[$what])) 28 $$what = $cont[$what];
|
/PHP-8.0/ext/phar/tests/ |
H A D | phar_oo_006.phpt | 14 function __construct($what) 16 echo __METHOD__ . "($what)\n"; 17 parent::__construct($what);
|
/PHP-8.0/ext/pcre/pcre2lib/ |
H A D | pcre2_config.c | 78 pcre2_config(uint32_t what, void *where) in pcre2_config() argument 82 switch(what) in pcre2_config() 111 switch (what) in pcre2_config()
|
/PHP-8.0/ext/phar/phar/ |
H A D | clicommand.inc | 121 $what = substr($m->name, $l+strlen($sub)+1); 122 $func = $prefix . $sub . '_' . $what; 123 $what = str_replace('_', '-', $what); 125 if (!isset($a[$what])) { 126 $a[$what] = array(); 128 $a[$what][$sub] = /*$m->class . '::' .*/ $func; 233 private function cli_wordwrap($what, $l, $sp) 236 $b = substr($what, 0, $l); // strip out initial $l 237 $r = substr($what, $l); // remainder 262 foreach($conf['select'] as $opt => $what) { [all …]
|
/PHP-8.0/Zend/ |
H A D | zend_smart_string.h | 28 #define smart_string_appends_ex(str, src, what) \ argument 29 smart_string_appendl_ex((str), (src), strlen(src), (what)) 32 #define smart_string_append_ex(str, src, what) \ argument 34 ((smart_string *)(src))->len, (what));
|
/PHP-8.0/ext/standard/tests/strings/ |
H A D | strripos.phpt | 8 var_dump(strripos("I am what I am and that's all what I am", "am", -3));
|
H A D | strrpos.phpt | 8 var_dump(strrpos("I am what I am and that's all what I am", "am", -3));
|
/PHP-8.0/ext/zlib/tests/ |
H A D | 005.phpt | 19 Cry to relieve what's in your heart 64 Cry to relieve what's in your heart 67 Cry to relieve what's in your heart
|
H A D | 006.phpt | 20 Cry to relieve what's in your heart 65 Cry to relieve what's in your heart 68 Cry to relieve what's in your heart
|
/PHP-8.0/ext/dom/tests/ |
H A D | book-not-a-schema.xsd | 1 Let's see what happens upon parsing a file that doesn't contain a schema.
|
/PHP-8.0/ext/fileinfo/ |
H A D | fileinfo.c | 358 zval *what; in _php_finfo_get_type() local 367 if (zend_parse_parameters(ZEND_NUM_ARGS(), "z", &what) == FAILURE) { in _php_finfo_get_type() 371 switch (Z_TYPE_P(what)) { in _php_finfo_get_type() 373 buffer = Z_STRVAL_P(what); in _php_finfo_get_type() 374 buffer_len = Z_STRLEN_P(what); in _php_finfo_get_type() 383 …end_argument_type_error(1, "must be of type resource|string, %s given", zend_zval_type_name(what)); in _php_finfo_get_type() 425 php_stream_from_zval_no_verify(stream, what); in _php_finfo_get_type()
|
/PHP-8.0/ext/standard/ |
H A D | php_string.h | 45 PHPAPI zend_string *php_addcslashes_str(const char *str, size_t len, const char *what, size_t what_… 46 PHPAPI zend_string *php_addcslashes(zend_string *str, const char *what, size_t what_len); 53 PHPAPI zend_string *php_trim(zend_string *str, const char *what, size_t what_len, int mode);
|
/PHP-8.0/ext/zend_test/tests/ |
H A D | observer_retval_04.phpt | 24 function bar($what) { 25 return 'This gets ' . $what . ' in the return handler when unused'; // Refcounted + IS_VAR
|
/PHP-8.0/ext/pdo_mysql/tests/ |
H A D | pdo_mysql_prepare_native_named_placeholder.phpt | 28 // do not work with MySQL native PS, but lets see what happens! 30 // I would expect to get an error message, but this is not what happens. 37 // Ok, what has happened: anything inserted into the DB? 57 // Now, what do we have in the DB?
|
/PHP-8.0/ext/spl/tests/ |
H A D | iterator_031.phpt | 41 function append(Iterator $what) 44 parent::append($what);
|