Home
last modified time | relevance | path

Searched refs:version (Results 101 – 125 of 1307) sorted by relevance

12345678910>>...53

/PHP-7.3/ext/simplexml/tests/
H A Dbug43221.phpt7 $xml = simplexml_load_string('<?xml version="1.0" encoding="utf-8"?><root />');
17 <?xml version="1.0" encoding="utf-8"?>
/PHP-7.3/ext/soap/tests/soap12/
H A DT11.phpt8 <?xml version='1.0' ?>
22 <?xml version="1.0" encoding="UTF-8"?>
H A DT19.phpt8 <?xml version='1.0' ?>
22 <?xml version="1.0" encoding="UTF-8"?>
H A DT30.phpt8 <?xml version='1.0' ?>
18 <?xml version="1.0" encoding="UTF-8"?>
H A DT40.phpt8 <?xml version='1.0' ?>
24 <?xml version="1.0" encoding="UTF-8"?>
H A DT03.phpt8 <?xml version='1.0' ?>
20 <?xml version="1.0" encoding="UTF-8"?>
H A DT26.phpt8 <?xml version='1.0' ?>
19 <?xml version="1.0" encoding="UTF-8"?>
H A DT33.phpt8 <?xml version='1.0' ?>
19 <?xml version="1.0" encoding="UTF-8"?>
/PHP-7.3/ext/wddx/tests/
H A Dbug71587.phpt11 <?xml version='1.0' ?>
13 <wddxPacket version='1.0'>
/PHP-7.3/ext/dom/tests/
H A DDOMDocument_loadXML_error4.phpt4 This test verifies the method detects an unsupported xml version
23 Warning: DOMDocument::load%r(XML){0,1}%r(): Unsupported version '3.1' %s
H A DDOMDocument_load_error4.phpt4 This test verifies the method detects an unsupported xml version
23 Warning: DOMDocument::load%r(XML){0,1}%r(): Unsupported version '3.1' %s
H A Dbug54601.phpt8 <?xml version='1.0' encoding='utf-8' ?>
27 <?xml version="1.0" encoding="utf-8"?>
/PHP-7.3/ext/soap/tests/
H A Dsetheaders.phpt27 <?xml version="1.0" encoding="UTF-8"?>
29 <?xml version="1.0" encoding="UTF-8"?>
31 <?xml version="1.0" encoding="UTF-8"?>
33 <?xml version="1.0" encoding="UTF-8"?>
35 <?xml version="1.0" encoding="UTF-8"?>
37 <?xml version="1.0" encoding="UTF-8"?>
/PHP-7.3/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.3/
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.3/ext/mysqli/tests/
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_get_charset.phpt29 if (!$res = mysqli_query($link, 'SELECT version() AS server_version'))
33 $version = explode('.', $tmp['server_version']);
34 if (empty($version))
35 printf("[005] Cannot determine server version, need MySQL Server 4.1+ for the test!\n");
37 if ($version[0] <= 4 && $version[1] < 1)
/PHP-7.3/ext/soap/tests/interop/Round3/GroupD/
H A Dr3_groupD_doclit_004w.phpt17 <?xml version="1.0" encoding="UTF-8"?>
19 <?xml version="1.0" encoding="UTF-8"?>
/PHP-7.3/ext/xmlrpc/tests/
H A Dbug37057.phpt7 $response='<?xml version="1.0"?>
28 $response='<?xml version="1.0"?>
H A Dbug68027.phpt14 $obj = xmlrpc_decode("<?xml version=\"1.0\"?><methodResponse><params><param><value><dateTime.iso860…
18 $obj = xmlrpc_decode("<?xml version=\"1.0\"?><methodResponse><params><param><value><dateTime.iso860…
/PHP-7.3/ext/libxml/tests/
H A Dbug76777.phpt12 <?xml version="1.0"?>
17 <?xml version="1.0"?>
/PHP-7.3/sapi/cli/tests/
H A D015.phpt16 echo `"$php" -n --version | grep built:`;
18 echo `"$php" -n --version foo bar baz | grep built:`;
/PHP-7.3/ext/reflection/tests/
H A DReflectionClass_isInstantiable_variation.phpt44 Deprecated: Methods with the same name as their class will not be constructors in a future version
46 Deprecated: Methods with the same name as their class will not be constructors in a future version
48 Deprecated: Methods with the same name as their class will not be constructors in a future version
/PHP-7.3/ext/pdo_mysql/tests/
H A Dbug_44707.phpt16 die(sprintf("skip Cannot determine MySQL Server version\n"));
18 $version = $matches[0] * 10000 + $matches[1] * 100 + $matches[2];
19 if ($version < 41000)
21 $matches[0], $matches[1], $matches[2], $version));
H A Dmysql_pdo_test.inc93 We're a bit in trouble: PDO_MYSQL returns version strings.
113 $version = (int)$parts[0] * 10000;
114 $version+= (int)$parts[1] * 100;
115 $version+= (int)$parts[2];
117 return $version;
166 preg_match('/Client API version.*mysqlnd/', $tmp));

Completed in 47 milliseconds

12345678910>>...53