Home
last modified time | relevance | path

Searched refs:test (Results 701 – 725 of 5243) sorted by relevance

1...<<21222324252627282930>>...210

/php-src/ext/dba/tests/
H A Ddba_tcadb_creation_matrix.phpt59 This is a test insert
61 This is a test insert
63 This is a test insert
65 This is a test insert
67 This is a test insert
69 This is a test insert
71 This is a test insert
73 This is a test insert
92 This is a test insert
94 This is a test insert
[all …]
/php-src/Zend/tests/
H A Dobjects_009.phpt8 class test {
12 class test2 extends test {
16 class test3 extends test {
H A Dexception_during_property_assign_op.phpt12 $test = new Test;
14 $test->prop += 42;
16 var_dump($test);
H A Dbug69420.phpt7 protected function test() {
14 protected function test() {
21 $this->test();
H A Derrmsg_003.phpt6 class test {
8 $a = new test;
13 $t = new test;
H A Dbug45862.phpt7 function test() {
19 function test() { var_dump(get_class_vars("Tester")); }
24 $parent->test();
27 $child->test();
/php-src/Zend/tests/return_types/
H A D020.phpt5 function test() : array {
9 test();
14 #0 %s(%d): test()
H A Dinheritance005.phpt6 public static function test() : self {
12 public static function test() : self {
17 echo get_class(Bar::test());
/php-src/ext/tidy/
H A Dconfig.m46 if test "$PHP_TIDY" != "no"; then
8 if test "$PHP_TIDY" != "yes"; then
16 if test -f $i/include/$j/$j.h; then
21 elif test -f $i/include/$j.h; then
30 if test -z "$TIDY_DIR"; then
36 if test -f "$TIDY_INCDIR/tidybuffio.h"; then
42 if test "$TIDY_LIB_NAME" == 'tidyp'; then
/php-src/.github/actions/test-linux/
H A Daction.yml24 export PDO_MYSQL_TEST_DSN="mysql:host=localhost;dbname=test"
31 … export PGSQL_TEST_CONNSTR="host=localhost dbname=test port=5432 user=postgres password=postgres"
33 …export PDO_PGSQL_TEST_DSN="pgsql:host=localhost port=5432 dbname=test user=postgres password=postg…
35 export PDO_FIREBIRD_TEST_DATABASE=test.fdb
36 export PDO_FIREBIRD_TEST_DSN=firebird:dbname=localhost:test.fdb
37 export PDO_FIREBIRD_TEST_PASS=test
38 export PDO_FIREBIRD_TEST_USER=test
/php-src/ext/standard/tests/array/
H A Dbug42233.phpt6 $test = array(
12 var_dump($test);
13 var_dump(extract($test));
H A D003.phpt42 ["test"]=>
53 string(4) "test"
68 string(4) "test"
77 ["test"]=>
103 string(4) "test"
/php-src/ext/phar/tests/cache_list/files/
H A Dwrite13.phar3 var_dump($p["test.txt"]->isCompressed());
6 var_dump($p["test.txt"]->isCompressed());
9 6���������������������test.txt������H������E�������<?php __HALT_COMPILER();Wk�2�O�?�dP݁�E��…
/php-src/ext/date/tests/
H A Dbug34676.phpt11 foreach ($tests as $test) {
12 $t = strtotime("2005-12-22 ". $test);
13 printf("%-10s => %s\n", $test, date(DATE_ISO8601, $t));
/php-src/Zend/tests/variadic/
H A Dby_ref_error.phpt6 function test(&... $args) { }
8 test(1);
12 Fatal error: Uncaught Error: test(): Argument #1 could not be passed by reference in %s:%d
/php-src/ext/session/tests/
H A D026.phpt22 public $test = "hallo";
55 ["test"]=>
61 ["test"]=>
67 ["test"]=>
73 ["test"]=>
/php-src/ext/sqlite3/tests/
H A Dsqlite3_07_prepared_stmt.phpt2 SQLite3::prepare Bound Value test
12 var_dump($db->exec('CREATE TABLE test (time INTEGER, id STRING)'));
15 var_dump($db->exec("INSERT INTO test (time, id) VALUES (" . TIMENOW . ", 'a')"));
16 var_dump($db->exec("INSERT INTO test (time, id) VALUES (" . TIMENOW . ", 'b')"));
19 $stmt = $db->prepare("SELECT * FROM test WHERE id = ? ORDER BY id ASC");
/php-src/ext/mysqli/tests/
H A DREADME.md3 To run the tests, a test database must be created in the MySQL command-line:
5 CREATE DATABASE test;
8 The test suite will create the necessary tables for testing, and then delete them when testing is c…
27 # Default: test
39 The MySQL user used to run the tests must have full permissions on the test database.
/php-src/ext/gmp/tests/
H A Dgmp_import.phpt8 // Tests taken from GMPs own test suite.
34 foreach ($import as $k => $test) {
35 $gmp = gmp_import(hex2bin($test[3]), $test[1], $test[2]);
38 if ($result !== $test[0]) {
39 echo "$k: '$result' !== '{$test[0]}'\n";
44 echo "$k: $type !== '{$test[0]}'\n";
/php-src/ext/pdo_pgsql/tests/
H A Dbug72294.phpt75 public function run( $test)
85 $test->runBare();
93 $this->errors[] = new PHPUnit_Framework_TestFailure($test, $e);
143 $test = new DatabaseTest();
144 $test->setName( 'testIt' );
145 $test->run( $result );
146 $test->setName( 'test_construct' );
147 $test->run( $result );
/php-src/tests/strings/
H A D001.phpt26 $test = "This is a test";
28 $found2 = strstr($test, "a ");
29 if ($found1 != " is a test") {
31 } elseif ($found2 != "a test") {
38 $test = "fola fola blakken";
39 $found1 = strrchr($test, "b");
51 $test = "abCdEfg";
52 $upper = strtoupper($test);
60 $test = "ABcDeFG";
61 $lower = strtolower($test);
[all …]
/php-src/tests/lang/
H A Dbug24951.phpt5 function test($s, $mode)
11 ob_start("test");
18 ob_start("test");
26 ob_start("test");
H A Dbug21600.phpt8 $tmp['foo'] = "test";
15 $tmp['foo'] = "test";
32 string(4) "test"
38 string(4) "test"
/php-src/ext/curl/tests/
H A Dcurl_write_return.phpt7 Writes the value 'test' to a temporary file. Use curl to access this file and have it return the co…
14 $log_file = tempnam(sys_get_temp_dir(), 'php-curl-test');
17 fwrite($fp, "test");
33 test
H A Dcurl_write_stdout.phpt7 Writes the value 'test' to a temporary file. Use curl to access this file and store the output in a…
13 $log_file = tempnam(sys_get_temp_dir(), 'php-curl-test');
16 fwrite($fp, "test");
30 test

Completed in 68 milliseconds

1...<<21222324252627282930>>...210