Home
last modified time | relevance | path

Searched refs:version (Results 26 – 50 of 1215) sorted by last modified time

12345678910>>...49

/PHP-7.4/ext/libxml/tests/
H A Dlibxml_disable_entity_loader_2.phpt12 <?xml version="1.0" encoding="UTF-8"?>
H A Dlibxml_disable_entity_loader.phpt13 <?xml version="1.0" encoding="UTF-8"?>
H A Dbug51903.phpt15 . "<?xml version=\"1.0\"?>\n"
19 . "<?xml version=\"1.0\"?>\n"
23 . "<?xml version=\"1.0\"?>\n"
/PHP-7.4/ext/dom/tests/
H A Dbug43364.phpt22 <?xml version="1.0" encoding="UTF-8"?>
/PHP-7.4/ext/standard/
H A Dinfo.c136 if (zend_module->info_func || zend_module->version) { in php_info_print_module()
153 php_info_print_table_row(2, "Version", zend_module->version); in php_info_print_module()
716 php_uname = buf.version; in php_get_uname()
721 buf.sysname, buf.nodename, buf.release, buf.version, in php_get_uname()
936 if (module->info_func || module->version) { in php_print_info()
945 if (!module->info_func && !module->version) { in php_print_info()
1285 const char *version; in PHP_FUNCTION() local
1286 version = zend_get_module_version(ext_name); in PHP_FUNCTION()
1287 if (version == NULL) { in PHP_FUNCTION()
1290 RETURN_STRING(version); in PHP_FUNCTION()
/PHP-7.4/ext/ftp/tests/
H A Dserver.inc200 fputs($s, "215 OS/400 is the remote operating system. The TCP/IP version is \"V5R2M0\"\r\n");
/PHP-7.4/ext/xmlreader/tests/
H A Dbug73246.phpt11 $reader->XML('<?xml version="1.0"?><root/>', "UTF\0-8");
/PHP-7.4/ext/posix/
H A Dposix.c711 add_assoc_string(return_value, "version", u.version); in PHP_FUNCTION()
/PHP-7.4/ext/soap/tests/
H A Dbug69668.phpt10 public function __doRequest($request, $location, $action, $version, $one_way = 0) {
25 <?xml version="1.0" encoding="UTF-8"?>
/PHP-7.4/ext/dom/
H A Dphp_dom.c1327 int dom_has_feature(char *feature, char *version) in dom_has_feature() argument
1331 if (!(strcmp (version, "1.0") && strcmp (version,"2.0") && strcmp(version, ""))) { in dom_has_feature()
1332 if ((!strcasecmp(feature, "Core") && !strcmp (version, "1.0")) || !strcasecmp(feature, "XML")) in dom_has_feature()
/PHP-7.4/ext/reflection/
H A Dphp_reflection.c935 (module->version == NO_VERSION_YET) ? "<no_version>" : module->version); in _extension_string()
963 if (dep->version) { in _extension_string()
1052 if (extension->version) { in _zend_extension_string()
5792 if (module->version == NO_VERSION_YET) { in ZEND_METHOD()
5795 RETURN_STRING(module->version); in ZEND_METHOD()
5999 if (dep->version) { in ZEND_METHOD()
6000 len += strlen(dep->version) + 1; in ZEND_METHOD()
6008 dep->version ? " " : "", in ZEND_METHOD()
6009 dep->version ? dep->version : ""); in ZEND_METHOD()
6147 if (extension->version) { in ZEND_METHOD()
[all …]
/PHP-7.4/
H A Drun-tests.php3607 protected $version = ''; variable in RuntestsValgrind
3615 return $this->version;
3632 …$version = preg_replace("/valgrind-(\d+)\.(\d+)\.(\d+)([.\w_-]+)?(\s+)/", '$1.$2.$3', $header, 1, …
3636 $this->version = $version;
3639 $this->version_3_3_0 = version_compare($version, '3.3.0', '>=');
3640 $this->version_3_8_0 = version_compare($version, '3.8.0', '>=');
H A DLICENSE2 The PHP License, version 3.01
29 license from time to time. Each version will be given a
30 distinguishing version number.
31 Once covered code has been published under a particular version
33 of that version. You may also choose to use such covered code
34 under the terms of any subsequent version of the license
H A D.travis.yml82 - ccache --version
/PHP-7.4/ext/oci8/
H A DLICENSE2 The PHP License, version 3.01
29 license from time to time. Each version will be given a
30 distinguishing version number.
31 Once covered code has been published under a particular version
33 of that version. You may also choose to use such covered code
34 under the terms of any subsequent version of the license
/PHP-7.4/ext/phar/
H A Dtar.c793 memcpy(header.version, "00", sizeof("00")-1); in phar_tar_writeheaders_int()
/PHP-7.4/build/
H A Dphp.m41772 dnl Search for bison and optionally check if version is at least the minimum
1773 dnl required version MIN-VERSION and doesn't match any of the blank separated
1783 AC_MSG_CHECKING([for bison version])
1840 dnl Search for the re2c and optionally check if version is at least the minimum
1841 dnl required version MIN-VERSION.
1849 AC_MSG_CHECKING([for re2c version])
1851 php_re2c_version=$($RE2C --version | cut -d ' ' -f 2 2>/dev/null)
1913 if test "$PKG_CONFIG icu-io --atleast-version=60"; then
2091 dnl This macro is used to get a comparable version for Apache.
2094 ac_output=`$1 -v 2>&1 | grep version | $SED -e 's/Oracle-HTTP-//'`
[all …]
/PHP-7.4/ext/mysqli/tests/
H A Dmysqli_store_result_copy.phpt168 mysqli_multi_query($link, "CALL p(@version)");
180 mysqli_real_query($link, 'SELECT @version AS p_version');
H A Dmysqli_stmt_execute_stored_proc_next_result.phpt32 $version = 'myversion';
33 if (!mysqli_stmt_bind_param($stmt, 's', $version))
39 $version = 'unknown';
40 if (!mysqli_stmt_bind_result($stmt, $version) ||
44 if ($version !== "myversion")
46 $version,
72 $version = 'myversion';
79 $version = NULL;
80 if (!mysqli_stmt_bind_result($stmt, $version) ||
84 if ($version !== "myversion")
[all …]
H A Dmysqli_stmt_execute_stored_proc_out.phpt12 die(sprintf('skip Needs MySQL 5.5.3+, found version %d.', mysqli_get_server_version($link)));
H A Dmysqli_real_query.phpt53 mysqli_real_query($link, 'CALL p(@version)');
54 mysqli_real_query($link, 'SELECT @version AS p_version');
H A Dmysqli_report_wo_ps.phpt104 … in your SQL syntax; check the manual that corresponds to your %s server version for the right syn…
106 … in your SQL syntax; check the manual that corresponds to your %s server version for the right syn…
112 … in your SQL syntax; check the manual that corresponds to your %s server version for the right syn…
H A Dmysqli_set_charset.phpt16 if (!($res = mysqli_query($link, 'SELECT version() AS server_version')) ||
19 die(sprintf("skip Cannot check server version, [%d] %s\n",
23 $version = explode('.', $tmp['server_version']);
24 if (empty($version)) {
26 die(sprintf("skip Cannot check server version, based on '%s'",
30 if ($version[0] <= 4 && $version[1] < 1) {
H A Dmysqli_stmt_affected_rows.phpt63 // NOTE: the error message varies with the MySQL Server version, dump only the error code!
64 …printf("[009] [%d] (error message varies with the MySQL Server version, check the error code)\n", …
249 [009] [%d] (error message varies with the MySQL Server version, check the error code)
H A Dmysqli_stmt_bind_param_call_user_func.phpt303 …printf("[048] [%d] (Message might vary with MySQL Server version, e.g. No data supplied for parame…
323 …printf("[052] [%d] (Message might vary with MySQL Server version, e.g. No data supplied for parame…

Completed in 81 milliseconds

12345678910>>...49