Home
last modified time | relevance | path

Searched refs:warning (Results 76 – 100 of 202) sorted by path

123456789

/php-src/ext/ftp/tests/
H A Dftp_get_basic.phpt30 ftp_get($ftp, $tmpfname ,'a warning.txt', FTP_ASCII);
39 Warning: ftp_get(): a warning: No such file or directory in %sftp_get_basic.php on line %d
/php-src/ext/gd/
H A Dconfig.m4148 dnl display a warning but eventually return normally, making a simple link
/php-src/ext/hash/xxhash/
H A Dxxhash.h1518 # pragma warning(disable : 4127) /* disable: C4127: conditional expression is constant */
2825 # warning "XXH3 is highly inefficient without ARM or Thumb-2."
3107 # warning "-maltivec=be is not recommended. Please use native endianness."
/php-src/ext/intl/tests/
H A Dcollator_get_error_code.phpt39 # Suppress warning messages.
H A Dintl_get_error_code.phpt11 // Suppress warning messages.
H A Dintl_get_error_message.phpt11 // Suppress warning messages.
/php-src/ext/json/
H A Djson_scanner.re74 /* this should never happened (just to suppress compiler warning) */
/php-src/ext/libxml/tests/
H A Dbug61367-read.phpt60 Warning: DOMDocument::loadXML(): I/O warning : failed to load external entity "file:///%s/test_bug_…
H A Dlibxml_disable_entity_loader.phpt43 Warning: DOMDocument::loadXML(): I/O warning : failed to load external entity "%s" in %s on line %d
/php-src/ext/mbstring/tests/
H A Dbug72691.phpt2 Bug #72691 (mb_ereg_search raises a warning if a match zero-width)
H A Dmb_convert_variables.phpt11 //$debug = true; // Uncomment this line to view error/warning/notice message in *.out file
/php-src/ext/mysqli/tests/
H A D066.phpt25 if (($warning = $mysql->get_warnings())) {
28 } while ($warning->next());
H A Dbug34810.phpt29 $warning = $mysql->get_warnings();
30 if (!$warning)
31 printf("[001] No warning!\n");
33 if ($warning->errno == 1048 || $warning->errno == 1253) {
35 if ("HY000" != $warning->sqlstate)
36 printf("[003] Wrong sql state code: %s\n", $warning->sqlstate);
38 if ("" == $warning->message)
42 var_dump($warning);
H A Dgh8978.phpt15 // Ignore this warning as we are providing wrong information on purpose
18 // There should be no warning here, only exception
H A Dgh9841.phpt2 Bug GH-9841 (mysqli_query throws warning despite using silenced error mode)
H A Dmysqli_class_mysqli_result_interface.phpt139 printf("[009] Expecting warning because of invalid resultmode\n");
H A Dmysqli_get_warnings.phpt44 …if (!is_object($warning = mysqli_get_warnings($link)) || 'mysqli_warning' != get_class($warning)) {
48 if (!method_exists($warning, 'next'))
51 $properties = array_merge(get_object_vars($warning), get_class_vars(get_class($warning)));
55 if ((!is_string($warning->message)) || ('' == $warning->message)) /* NULL or not there at all */
58 … if ((!is_string($warning->sqlstate)) || ('' == $warning->sqlstate)) /* NULL or not there at all */
61 if ((!is_int($warning->errno)) || (0 == $warning->errno)) /* NULL or not there at all */
62 printf("[013] Expecting int/not 0, got %s/%s\n", gettype($warning->errno), $warning->errno);
73 …if (!is_object($warning = mysqli_get_warnings($link)) || 'mysqli_warning' != get_class($warning)) {
96 if (!is_string($warning->message) || ('' == $warning->message))
97 printf("[025] Expecting string, got %s/%s", gettype($warning->message), $warning->message);
[all …]
H A Dmysqli_report.phpt211 - query must cause the warning on all MySQL versions
224 // this might cause a warning - no index used
234 // this might cause a warning - no index used
250 // this might cause a warning - no index used
H A Dmysqli_stmt_get_warnings.phpt19 die("skip Strict sql mode seems to be active. We won't get a warning to check for.");
55 if (!is_object($warning = mysqli_stmt_get_warnings($stmt)))
56 printf("[011] Expecting mysqli_warning object, got %s/%s\n", gettype($warning), $warning);
58 if ('mysqli_warning' !== get_class($warning))
59 printf("[012] Expecting object of type mysqli_warning got type '%s'", get_class($warning));
61 if (!method_exists($warning, 'next'))
67 if ('' == $warning->message)
70 if ('' == $warning->sqlstate)
73 if (0 == $warning->errno)
78 } while ($warning->next());
H A Dmysqli_warning_unclonable.phpt28 …if (!is_object($warning = mysqli_get_warnings($link)) || 'mysqli_warning' != get_class($warning)) {
32 $warning_clone = clone $warning;
/php-src/ext/opcache/
H A DZendAccelerator.c1720 zend_error_info *warning = warnings[i]; in replay_warnings() local
1721 zend_error_zstr_at(warning->type, warning->filename, warning->lineno, warning->message); in replay_warnings()
/php-src/ext/opcache/jit/
H A Dzend_jit_vm_helpers.c46 # pragma GCC diagnostic warning "-Wvolatile-register-var"
/php-src/ext/opcache/tests/jit/
H A Dgh12723-A.phpt2 GH-12723: Function JIT emits "Uninitialized string offset" warning at the same time as invalid offs…
H A Dgh12723-B.phpt2 GH-12723: JIT emits "Attempt to assign property of non-object" warning at the same time as Error is…
H A Dgh12748.phpt2 GH-12748: Function JIT emits "could not convert to int" warning at the same time as invalid offset …

Completed in 77 milliseconds

123456789