Home
last modified time | relevance | path

Searched refs:what (Results 1 – 25 of 118) sorted by relevance

12345

/php-src/ext/pdo_odbc/
H A Dphp_pdo_odbc_int.h116 const char *file, *what; member
163 void pdo_odbc_error(pdo_dbh_t *dbh, pdo_stmt_t *stmt, PDO_ODBC_HSTMT statement, char *what, const c…
164 #define pdo_odbc_drv_error(what) pdo_odbc_error(dbh, NULL, SQL_NULL_HSTMT, what, __FILE__, __LINE__) argument
165 #define pdo_odbc_stmt_error(what) pdo_odbc_error(stmt->dbh, stmt, SQL_NULL_HSTMT, what, __FILE__, _… argument
166 #define pdo_odbc_doer_error(what) pdo_odbc_error(dbh, NULL, stmt, what, __FILE__, __LINE__) argument
/php-src/Zend/tests/
H A Dbug30394.phpt7 public function __get( $what )
9 return $this->_p[ $what ];
12 public function __set( $what, $value )
14 $this->_p[ $what ] = $value;
H A Dbug71529.phpt10 function out($what) {
11 var_dump($what);
12 return $what;
/php-src/ext/readline/
H A Dreadline.c146 zend_string *what = NULL; in PHP_FUNCTION() local
155 if (!what) { in PHP_FUNCTION()
183 if (zend_string_equals_literal_ci(what,"line_buffer")) { in PHP_FUNCTION()
193 } else if (zend_string_equals_literal_ci(what, "point")) { in PHP_FUNCTION()
196 } else if (zend_string_equals_literal_ci(what, "end")) { in PHP_FUNCTION()
200 } else if (zend_string_equals_literal_ci(what, "mark")) { in PHP_FUNCTION()
202 } else if (zend_string_equals_literal_ci(what, "done")) { in PHP_FUNCTION()
208 } else if (zend_string_equals_literal_ci(what, "pending_input")) { in PHP_FUNCTION()
217 } else if (zend_string_equals_literal_ci(what, "prompt")) { in PHP_FUNCTION()
219 } else if (zend_string_equals_literal_ci(what, "terminal_name")) { in PHP_FUNCTION()
[all …]
/php-src/scripts/dev/
H A Dcredits12 for what in ext sapi
14 file=ext/standard/credits_$what.h
30 files=`find "$what" -name CREDITS | grep -v "$what"/skeleton/CREDITS`
/php-src/ext/simplexml/tests/
H A D000.phpt10 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-src/ext/tokenizer/tests/
H A DPhpToken_toString.phpt8 $tokens = PhpToken::tokenize('<?php echo "Hello ". $what;');
17 string(27) "<?php echo "Hello ". $what;"
/php-src/ext/phar/tests/
H A Dphar_oo_006.phpt14 function __construct($what)
16 echo __METHOD__ . "($what)\n";
17 parent::__construct($what);
/php-src/ext/phar/tests/files/
H A Dphar_test.inc24 foreach(array('comp','crc32','clen','ulen','time','flags','perm','meta','cont') as $what)
26 if (isset($cont[$what]))
28 $$what = $cont[$what];
/php-src/ext/phar/tests/cache_list/files/
H A Dphar_test.inc24 foreach(array('comp','crc32','clen','ulen','time','flags','perm','meta','cont') as $what)
26 if (isset($cont[$what]))
28 $$what = $cont[$what];
/php-src/ext/reflection/tests/
H A Dbug75186.phpt11 function($what) { echo "Hello $what!\n"; },
/php-src/ext/pcre/pcre2lib/
H A Dpcre2_config.c78 pcre2_config(uint32_t what, void *where) in pcre2_config() argument
82 switch(what) in pcre2_config()
111 switch (what) in pcre2_config()
/php-src/ext/phar/phar/
H A Dclicommand.inc121 $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-src/Zend/
H A Dzend_smart_string.h28 #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-src/ext/fileinfo/
H A Dfileinfo.c297 zval *what; in _php_finfo_get_type() local
304 if (zend_parse_parameters(ZEND_NUM_ARGS(), "z", &what) == FAILURE) { in _php_finfo_get_type()
308 switch (Z_TYPE_P(what)) { in _php_finfo_get_type()
310 buffer = Z_STRVAL_P(what); in _php_finfo_get_type()
311 buffer_len = Z_STRLEN_P(what); in _php_finfo_get_type()
320 …nd_argument_type_error(1, "must be of type resource|string, %s given", zend_zval_value_name(what)); in _php_finfo_get_type()
355 php_stream_from_zval_no_verify(stream, what); in _php_finfo_get_type()
/php-src/ext/standard/tests/strings/
H A Dstrripos.phpt8 var_dump(strripos("I am what I am and that's all what I am", "am", -3));
H A Dstrrpos.phpt8 var_dump(strrpos("I am what I am and that's all what I am", "am", -3));
/php-src/ext/zlib/tests/
H A D005.phpt19 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 D006.phpt20 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-src/ext/pdo_mysql/tests/
H A Dpdo_mysql_prepare_native_named_placeholder.phpt27 // do not work with MySQL native PS, but lets see what happens!
29 // I would expect to get an error message, but this is not what happens.
36 // Ok, what has happened: anything inserted into the DB?
56 // Now, what do we have in the DB?
/php-src/ext/dom/tests/
H A Dbook-not-a-schema.xsd1 Let's see what happens upon parsing a file that doesn't contain a schema.
/php-src/ext/zend_test/tests/
H A Dobserver_retval_04.phpt25 function bar($what) {
26 return 'This gets ' . $what . ' in the return handler when unused'; // Refcounted + IS_VAR
/php-src/ext/standard/
H A Dphp_string.h44 PHPAPI zend_string *php_addcslashes_str(const char *str, size_t len, const char *what, size_t what_…
45 PHPAPI zend_string *php_addcslashes(zend_string *str, const char *what, size_t what_len);
52 PHPAPI zend_string *php_trim(zend_string *str, const char *what, size_t what_len, int mode);
H A Dincomplete_class.c41 static void throw_incomplete_class_error(zend_object *object, const char *what) in throw_incomplete_class_error() argument
45 what, class_name ? ZSTR_VAL(class_name) : "unknown"); in throw_incomplete_class_error()
/php-src/ext/spl/tests/
H A Diterator_031.phpt41 function append(Iterator $what): void
44 parent::append($what);

Completed in 33 milliseconds

12345