Home
last modified time | relevance | path

Searched refs:test (Results 251 – 275 of 4858) sorted by relevance

1...<<11121314151617181920>>...195

/PHP-7.0/ext/standard/tests/file/
H A Dbug39538.phpt5 …y("\"\nthis is an test\", \"next data\", \"p\narsed\"","\"\r\nthis is an test\", \"next data\", \"…
19 this is an test
27 this is an test
36 this is an test
H A Ddirname_basic.phpt29 'c:\test\afile',
30 'c:\\test\\afile',
31 'c://test//afile',
32 'c:\test\afile\\',
43 ' c:\test\adir\afile.txt',
44 'c:\test\adir\afile.txt ',
45 ' c:\test\adir\afile.txt ',
50 ' c:\test\adir\afile.txt',
71 string(8) "c://test"
H A Duserstreams_005.phpt26 function test($name, $fd, $dest_size) {
30 var_dump(stream_wrapper_register('test', 'test_wrapper'));
34 $fd = fopen("test://foo","r");
38 test("stream_truncate not implemented", $fd2, 0);
39 test("stream_truncate size 0", $fd, 0);
40 test("stream_truncate size 10", $fd, 10);
41 test("stream_truncate negative size", $fd, -1);
42 test("stream_truncate bad return", $fd3, 0);
/PHP-7.0/ext/pdo/tests/
H A Dbug_47769.phpt11 class test extends PDO
27 $test = new test('sqlite::memory:');
28 $test->quote('foo');
29 $test->isProtected();
37 Fatal error: Uncaught Error: Call to protected method test::isProtected() from context '' in %s:%d
/PHP-7.0/ext/mbstring/tests/
H A Dmb_send_mail03.phpt2 mb_send_mail() test 3 (lang=English)
20 mb_send_mail($to, mb_language(), "test");
25 mb_send_mail($to, "test ".mb_language(), "test");
37 Subject: test English
42 test
H A Dzend_multibyte-13.phpt12 __halt_compiler();test
13 test
15 string(10) "test
16 test
H A Dzend_multibyte-14.phpt12 __halt_compiler();test
13 test
15 string(10) "test
16 test
/PHP-7.0/tests/classes/
H A Dclone_004.phpt12 class test extends base {
13 public $b = 'test';
24 $o1 = new test;
42 object(test)#1 (2) {
59 object(test)#2 (2) {
76 object(test)#2 (2) {
/PHP-7.0/ext/spl/tests/
H A Dspl_iterator_getcallchildren.phpt11 $test = new RecursiveIteratorIterator($recursiveArrayIterator);
13 var_dump($test->current());
14 $test->next();
15 var_dump($test->current());
17 $output = $test->callGetChildren();
/PHP-7.0/Zend/tests/
H A Dbug71871.phpt6 interface test {
7 final function test();
12 Fatal error: Access type for interface method test::test() must be omitted in %s on line %d
H A Dbug71871_2.phpt6 interface test {
7 abstract function test();
12 Fatal error: Access type for interface method test::test() must be omitted in %s on line %d
H A Dnowdoc_005.phpt2 unbraced complex variable replacement test (nowdoc)
9 This is nowdoc test #s $a, $b, $c['c'], and $d->d.
14 This is nowdoc test #s $a, $b, $c['c'], and $d->d.
22 This is nowdoc test #s $a, $b, $c['c'], and $d->d.
23 This is nowdoc test #s $a, $b, $c['c'], and $d->d.
H A Dnowdoc_006.phpt2 braced complex variable replacement test (nowdoc)
9 This is nowdoc test #s {$a}, {$b}, {$c['c']}, and {$d->d}.
14 This is nowdoc test #s {$a}, {$b}, {$c['c']}, and {$d->d}.
22 This is nowdoc test #s {$a}, {$b}, {$c['c']}, and {$d->d}.
23 This is nowdoc test #s {$a}, {$b}, {$c['c']}, and {$d->d}.
H A Dnowdoc_007.phpt2 braced and unbraced complex variable replacement test (nowdoc)
9 This is nowdoc test #s $a, {$b}, {$c['c']}, and {$d->d}.
14 This is nowdoc test #s $a, {$b}, {$c['c']}, and {$d->d}.
22 This is nowdoc test #s $a, {$b}, {$c['c']}, and {$d->d}.
23 This is nowdoc test #s $a, {$b}, {$c['c']}, and {$d->d}.
H A Dbug34064.phpt7 function test_ref(&$test)
9 $test = "ok";
12 function test($test)
21 $this->test($ar[]);
/PHP-7.0/ext/phar/tests/cache_list/files/
H A Dwrite22.phar3 var_dump($p["test.txt"]->isCompressed());
4 $p["test.txt"]->decompress();
5 var_dump($p["test.txt"]->isCompressed());
8 6��������������������test.txt������H������E���������/�(P���p� �w��
H A Dwrite21.phar3 var_dump($p["test.txt"]->isCompressed());
4 $p["test.txt"]->compress(Phar::GZ);
5 var_dump($p["test.txt"]->isCompressed());
8 6���������������������test.txt���{��H������E�������<?php __HALT_COMPILER();u:ΰ�U��|ZM�̧�Є�…
/PHP-7.0/ext/mysqlnd/
H A Dconfig9.m413 if test -z "$PHP_ZLIB_DIR"; then
19 if test "$PHP_MYSQLND" != "no" || test "$PHP_MYSQLND_ENABLED" = "yes"; then
28 if test "$PHP_MYSQLND_COMPRESSION_SUPPORT" != "no"; then
34 test -z "$PHP_OPENSSL" && PHP_OPENSSL=no
36 if test "$PHP_OPENSSL" != "no" || test "$PHP_OPENSSL_DIR" != "no"; then
49 if test "$PHP_MYSQLND" != "no" || test "$PHP_MYSQLND_ENABLED" = "yes" || test "$PHP_MYSQLI" != "no"…
/PHP-7.0/ext/dba/tests/
H A Ddba015.phpt13 require_once(dirname(__FILE__) .'/test.inc');
18 dba_insert("key1", "This is a test insert 1", $db_file1);
32 dba_insert("key2", "This is a test insert 2", $db_file2);
59 This is a test insert 1
63 This is a test insert 1
64 This is a test insert 2
66 This is a test insert 1
67 This is a test insert 2
72 This is a test insert 1
73 This is a test insert 2
H A Ddba_db4_016.phpt13 require_once(dirname(__FILE__) .'/test.inc');
19 var_dump(dba_insert("key1", "This is a test insert", $db_file));
29 // Now test reopening it
33 var_dump(dba_insert("key1", "second open test", $db_file));
34 var_dump(dba_insert("key2", "second open test row 2", $db_file));
54 This is a test insert
58 This is a test insert
59 second open test row 2
/PHP-7.0/ext/standard/tests/general_functions/
H A Dis_resource_basic.phpt43 echo $types[$i]. " test returns TRUE\n";
45 echo $types[$i]. " test returns FALSE\n";
76 bool=false test returns FALSE
77 bool=true test returns FALSE
78 integer test returns FALSE
79 double test returns FALSE
80 string test returns FALSE
81 array test returns FALSE
82 NULL test returns FALSE
83 object test returns FALSE
/PHP-7.0/ext/wddx/
H A Dconfig.m48 if test -z "$PHP_LIBXML_DIR"; then
16 if test "$PHP_WDDX" != "no"; then
21 if test "$PHP_LIBEXPAT_DIR" = "no"; then
22 if test "$PHP_LIBXML" = "no"; then
27 if test "$PHP_XML" = "no"; then
39 if test "$PHP_LIBEXPAT_DIR" != "no"; then
41 …if test -f "$i/$PHP_LIBDIR/libexpat.a" || test -f "$i/$PHP_LIBDIR/libexpat.$SHLIB_SUFFIX_NAME"; th…
47 if test -z "$EXPAT_DIR"; then
/PHP-7.0/ext/soap/tests/soap12/
H A DT76_2.phpt14 <test:DataHolder xmlns:test="http://example.org/ts-tests"
16 <test:Data enc:id="data" xsi:type="xsd:string">hello world</test:Data>
17 </test:DataHolder>
20 <test:echoString xmlns:test="http://example.org/ts-tests"
23 </test:echoString>
27 include "soap12-test.inc";
/PHP-7.0/ext/hash/tests/
H A Djoaat.phpt18 foreach ($tests as $test) {
21 $result = hash("joaat", $test[0]);
22 if ($result != $test[1]) {
23 …echo "Iteration " . $i . " failed - expected '" . $test[1] . "', got '" . $result . "' for '" . $t…
/PHP-7.0/ext/iconv/tests/
H A Diconv_substr.phpt34 bar("This is a test", 100000);
35 bar("This is a test", 0, 100000);
36 bar("This is a test", -3);
37 bar("This is a test", 0, -9);
38 bar("This is a test", 0, -100000);
39 bar("This is a test", -9, -100000);
49 string(14) "This is a test"
50 string(14) "This is a test"

Completed in 153 milliseconds

1...<<11121314151617181920>>...195