Home
last modified time | relevance | path

Searched refs:strtoupper (Results 1 – 25 of 81) sorted by last modified time

1234

/php-src/ext/sqlite3/tests/
H A Dsqlite3_trampoline_createfunction_no_leak.phpt13 return strtoupper($arguments[0]);
17 $callback = [$o, 'strtoupper'];
28 var_dump($db->createfunction('strtoupper', $callback, new stdClass()));
38 var_dump($obj->createfunction('strtoupper', $callback));
43 var_dump($db->createfunction('strtoupper', $callback));
/php-src/ext/pdo_sqlite/tests/subclasses/
H A Dpdo_sqlite_createafunction_arg_error.phpt19 $db->createFunction(null, [new TrampolineTest(), 'strtoupper']);
25 $db->createFunction('strtoupper', null);
31 $db->createFunction('strtoupper', [new TrampolineTest(), 'strtoupper'], null);
37 $db->createFunction('strtoupper', [new TrampolineTest(), 'strtoupper'], 1, null);
H A Dpdo_sqlite_createafunction_trampoline.phpt17 return strtoupper($arguments[0]);
21 var_dump($db->createFunction('strtoupper', [new TrampolineTest(), 'strtoupper']));
23 foreach ($db->query('SELECT strtoupper("test")') as $row) {
27 foreach ($db->query('SELECT strtoupper("test")') as $row) {
34 Trampoline for strtoupper
36 ["strtoupper("test")"]=>
41 Trampoline for strtoupper
43 ["strtoupper("test")"]=>
/php-src/
H A Drun-tests.php242 $log_format = strtoupper(getenv('TEST_PHP_LOG_FORMAT'));
/php-src/ext/standard/tests/file/
H A Dfile_get_contents_file_put_contents_5gb.phpt14 if (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN') {
/php-src/ext/standard/
H A Dbasic_functions.stub.php2375 function strtoupper(string $string): string {}
H A Dbasic_functions_arginfo.h2556 ZEND_FUNCTION(strtoupper);
H A Dstring.c1232 PHP_FUNCTION(strtoupper) in PHP_FUNCTION() argument
/php-src/.github/
H A Dnightly_matrix.php144 : [['name' => strtoupper($branch), 'ref' => $branch, 'version' => get_current_version()]];
/php-src/ext/phar/phar/
H A Dpharcommand.inc175 $ukey = strtoupper($lkey);
/php-src/ext/opcache/tests/
H A Dbug73746.phpt16 switch (strtoupper($countryIsoCode)) {
/php-src/ext/xsl/tests/
H A DXSLTProcessor_namespace_mapper_lifetime.phpt21 <xsl:value-of select="php:function('strtoupper', string(./hello))"/>
H A Dauto_registration_namespaces_new_dom.phpt16 <xsl:value-of select="php:function('strtoupper', string(./hello))"/>
H A DregisterPHPFunctionNS.phpt83 $proc->registerPHPFunctionNS('urn:bar', 'test', strtoupper(...));
/php-src/ext/dom/tests/
H A DDOMElement_insertAdjacentText.phpt22 $transform = fn ($s) => $uppercase ? strtoupper($s) : $s;
H A DregisterPhpFunctionNS.phpt11 return strtoupper($arguments[0]);
H A DDOMElement_insertAdjacentElement.phpt39 $transform = fn ($s) => $uppercase ? strtoupper($s) : $s;
/php-src/sapi/fpm/tests/
H A Dfcgi.inc840 … throw new \Exception('FCGI_STD' . strtoupper($type) . ' stream already finished by empty record');
/php-src/ext/pdo_sqlite/tests/
H A Dpdo_fetch_func_001.phpt23 var_dump($st->fetchAll(PDO::FETCH_FUNC, 'strtoupper'));
/php-src/ext/pdo/tests/
H A Dbug_50458.phpt21 var_dump($res->fetchAll(PDO::FETCH_FUNC, function($a) { return strtoupper($a); }));
/php-src/ext/xml/tests/
H A Dbug32001.phpt57 switch (strtoupper($this->encoding)) {
/php-src/ext/standard/tests/general_functions/
H A Ddl-001.phpt15 if (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN') {
H A Ddl-002.phpt16 if (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN') {
H A Ddl-003.phpt14 if (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN') {
/php-src/ext/mysqli/tests/
H A Dmysqli_get_host_info.phpt21 …if ($host != 'localhost' && $host != '127.0.0.1' && $port != '' && $host != "" && strtoupper(subst…

Completed in 95 milliseconds

1234