Home
last modified time | relevance | path

Searched refs:version (Results 176 – 200 of 1203) sorted by path

12345678910>>...49

/PHP-5.5/ext/mbstring/tests/
H A Dmb_strtoupper_variation1.phpt11 * Description: Returns a uppercased version of $sourcestring
H A Dmb_strtoupper_variation2.phpt11 * Description: Returns a uppercased version of $sourcestring
H A Dmb_strtoupper_variation3.phpt11 * Description: Returns a uppercased version of $sourcestring
H A Dmb_strtoupper_variation4.phpt11 * Description: Returns a uppercased version of $sourcestring
/PHP-5.5/ext/mbstring/ucgendat/
H A DOPENLDAP_LICENSE19 Each revision is distinguished by a version number. You may use
/PHP-5.5/ext/mcrypt/
H A Dconfig.m48 AC_MSG_CHECKING(for libmcrypt version)
17 AC_MSG_ERROR(libmcrypt version 2.5.6 or greater required.)
46 AC_MSG_ERROR([Sorry, I was not able to diagnose which libmcrypt version you have installed.])
/PHP-5.5/ext/mysql/tests/
H A Dmysql_client_encoding.phpt25 if (!$res = mysql_query('SELECT version() AS server_version', $link))
29 $version = explode('.', $tmp['server_version']);
30 if (empty($version))
31 printf("[005] Cannot determine server version, need MySQL Server 4.1+ for the test!\n");
33 if ($version[0] <= 4 && $version[1] < 1)
H A Dmysql_constants.phpt25 $version = mysql_get_server_info($link);
26 if (!preg_match('@(\d+)\.(\d+)\.(\d+)@ism', $version, $matches))
27 printf("[001] Cannot get server version\n");
28 $version = ($matches[1] * 100) + ($matches[2] * 10) + $matches[3];
30 if ($version > 400) {
H A Dmysql_fetch_field.phpt24 $version = mysql_get_server_info($link);
25 if (!preg_match('@(\d+)\.(\d+)\.(\d+)@ism', $version, $matches))
26 printf("[003] Cannot get server version\n");
27 $version = ($matches[1] * 100) + ($matches[2] * 10) + $matches[3];
H A Dmysql_field_flags.phpt45 $version = mysql_get_server_info($link);
46 if (!preg_match('@(\d+)\.(\d+)\.(\d+)@ism', $version, $matches))
47 printf("[009] Cannot get server version\n");
48 $version = ($matches[1] * 1000) + ($matches[2] * 100) + $matches[3];
53 'label' => array(($version < 5000) ? 'multiple_key' : 'unique_key')
89 if ($version < 5600) {
H A Dmysql_phpinfo.phpt22 if (!stristr($phpinfo, "client api version"))
23 printf("[002] ext/mysql should have exposed the library version.\n");
H A Dmysql_query.phpt54 $res = mysql_query('CALL p(@version)', $link);
55 $res = mysql_query('SELECT @version AS p_version', $link);
H A Dmysql_query_load_data_openbasedir.phpt35 print "[006] [1148] The used command is not allowed with this MySQL version
38 [010] [1148] The used command is not allowed with this MySQL version
H A Dmysql_reflection_extension.phpt33 printf("Dumping version dependent and missing functions\n");
H A Dmysql_trace_mode.phpt34 … in your SQL syntax; check the manual that corresponds to your %s server version for the right syn…
H A Dmysql_unbuffered_query.phpt44 $res = mysql_unbuffered_query('CALL p(@version)', $link);
45 $res = mysql_unbuffered_query('SELECT @version AS p_version', $link);
/PHP-5.5/ext/mysqli/
H A Dconfig.m457 …AC_MSG_ERROR([wrong mysql library version or lib not found. Check config.log for more information.…
/PHP-5.5/ext/mysqli/tests/
H A D067.phpt10 die("skip Cannot connect to check required version");
H A D071.phpt14 $version = $mysql->server_version;
24 /* libmysql return value seems to depend on server version */
25 if ((($version >= 50123) || ($version <= 40200)) && $version != 50200) {
26 /* TODO: find exact version */
28 …ntf("[001] Expecting boolean/true got %s/%s @\n", gettype($ret), var_export($ret, true), $version);
32 …tf("[001] Expecting boolean/false got %s/%s @\n", gettype($ret), var_export($ret, true), $version);
51 /* libmysql return value seems to depend on server version */
52 if ((($version >= 50123) || ($version <= 40200)) && $version != 50200) {
53 /* TODO: find exact version */
55 …ntf("[002] Expecting boolean/true got %s/%s @\n", gettype($ret), var_export($ret, true), $version);
[all …]
H A Dbug42548.phpt12 die(sprintf('skip Needs MySQL 5.0+, found version %d.', mysqli_get_server_version($link)));
H A Dbug44897.phpt17 die(sprintf('skip Needs MySQL 5.0+, found version %d.', mysqli_get_server_version($link)));
H A Dconnect.inc34 The formatting of the version reported by mysqli_get_client_info()
37 PHP 5.3.0 to version 5.0.4 = 5 * 10000 + 0 * 100 + 4 = 50004.
H A Dlocal_infile_tools.inc41 …annot test LOAD DATA LOCAL INFILE, [1148] The used command is not allowed with this MySQL version";
H A Dmysqli_change_user_oo.phpt11 die("skip Your MySQL Server version has a known bug that will cause a crash");
H A Dmysqli_change_user_set_names.phpt12 if (!$res = mysqli_query($link, 'SELECT version() AS server_version'))
17 $version = explode('.', $tmp['server_version']);
18 if (empty($version))
19 die(sprintf("skip Cannot determine server version, we need MySQL Server 4.1+ for the test!"));
21 if ($version[0] <= 4 && $version[1] < 1)

Completed in 33 milliseconds

12345678910>>...49