Home
last modified time | relevance | path

Searched refs:test (Results 676 – 700 of 5243) sorted by relevance

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

/php-src/Zend/tests/
H A Dbug63982.phpt9 $test = new Test();
11 var_dump(isset($test->protectedProperty));
12 var_dump(isset($test->protectedProperty->foo));
H A Dbug20242.phpt5 test::show_static();
7 $t = new test;
10 class test {
H A Derrmsg_021.phpt8 class test extends stdclass {
11 $t = new test;
16 Warning: test() has been disabled for security reasons in %s on line %d
H A Dclass_alias_004.phpt8 interface test { }
11 class_alias('foo', 'test');
15 Warning: Cannot redeclare class test (previously declared in %s:%d) in %s on line %d
/php-src/ext/opcache/tests/jit/
H A Dmod_005.phpt14 function test2($test) {
15 $test->prop %= 3;
16 return $test;
/php-src/Zend/tests/type_declarations/
H A Dtyped_properties_099.phpt10 $test = new Test;
11 foreach ($test->ary as &$value) {}
12 var_dump($test);
H A Dtyped_properties_077.phpt11 $test = new Test;
12 var_dump($test->i = "42");
13 var_dump($test->s = 42);
/php-src/ext/mbstring/tests/
H A Dmb_ereg_replace-compat-03.phpt2 mb_ereg_replace() compat test 3
12 $a="\\'test";
16 'test
H A Dbug52981.phpt7 function test($str)
16 test("\xF0\x90\x90\xB8");// U+10438 DESERET SMALL LETTER H (added in 3.1.0, March 2001)
18 test("\xE2\xB0\xB0"); // U+2C30 GLAGOLITIC SMALL LETTER AZU (added in 4.1.0, March 2005)
19 test("\xD4\xA5"); // U+0525 CYRILLIC SMALL LETTER PE WITH DESCENDER (added in 5.2.0, October 2009)
/php-src/Zend/tests/named_params/
H A Dcannot_pass_by_ref.phpt5 function test($a, &$e) {}
7 test(e: 42);
13 test(): Argument #2 ($e) could not be passed by reference
/php-src/ext/sqlite3/tests/
H A Dsqlite3_04_update.phpt12 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 $results = $db->query("SELECT * FROM test ORDER BY id ASC");
27 var_dump($db->exec("UPDATE test SET id = 'c' WHERE id = 'a'"));
30 $results = $db->query("SELECT * FROM test ORDER BY id ASC");
H A Dsqlite3_05_delete.phpt12 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 $results = $db->query("SELECT * FROM test ORDER BY id ASC");
27 var_dump($db->exec("DELETE FROM test WHERE id = 'a'"));
30 $results = $db->query("SELECT * FROM test ORDER BY id ASC");
H A Dbug45798.phpt10 $db->exec('CREATE TABLE test (time INTEGER, id STRING)');
12 $db->exec("INSERT INTO test (time, id) VALUES (" . time() . ", 'a')");
13 $db->exec("INSERT INTO test (time, id) VALUES (" . time() . ", 'b')");
15 $stmt = $db->prepare("SELECT * FROM test WHERE id = ? ORDER BY id ASC");
/php-src/ext/soap/tests/soap12/
H A DT73.phpt13 <test:echoString xmlns:test="http://example.org/ts-tests"
15 <test:inputString xsi:type="xsd:string"
16 … env:encodingStyle="http://www.w3.org/2003/05/soap-encoding">hello world</test:inputString>
17 </test:echoString>
21 include "soap12-test.inc";
H A DT11.phpt11 <test:Unknown xmlns:test="http://example.org/ts-tests"
13 env:mustUnderstand="false">foo</test:Unknown>
19 include "soap12-test.inc";
H A DT19.phpt11 <test:echoOk xmlns:test="http://example.org/ts-tests"
13 env:mustUnderstand="true">foo</test:echoOk>
19 include "soap12-test.inc";
H A DT34.phpt11 <test:Unknown xmlns:test="http://example.org/ts-tests"
13 env1:mustUnderstand="true">foo</test:Unknown>
19 include "soap12-test.inc";
/php-src/ext/zend_test/tests/
H A Dfiber_test_03.phpt8 $test = new _ZendTestFiber(function (): void {
13 var_dump($test->start()); // NULL
21 $value = $fiber->throw(new Exception('test'));
29 Fatal error: Uncaught Exception: test in %sfiber_test_03.php:%d
/php-src/ext/phar/tests/
H A Dfrontcontroller21.phpt10 REQUEST_URI=/frontcontroller21.php/index.php?test=hi
12 QUERY_STRING=test=hi
21 string(18) "/index.php?test=hi"
25 string(40) "/frontcontroller21.php/index.php?test=hi"
/php-src/ext/gd/tests/
H A Dcolorat.phpt14 echo 'test colorat truecolor: ';
26 echo 'test colorat palette: ';
39 test colorat truecolor: ok
40 test colorat palette: ok
/php-src/ext/soap/tests/bugs/
H A Dbug28969.phpt7 function test() {
18 $this->server->addFunction('test');
31 $x = new LocalSoapClient(NULL,array('location'=>'test://',
34 var_dump($x->test());
/php-src/ext/xmlreader/tests/
H A Dlibxml_global_state_entity_loader_bypass.phpt19 echo "--- String test ---\n";
22 echo "--- File test ---\n";
35 --- String test ---
36 --- File test ---
/php-src/tests/lang/
H A Dbug24908.phpt7 class test {
15 $test = new test();
/php-src/Zend/tests/closures/
H A Dclosure_from_callable_lsb.phpt7 public static function test() {
15 Closure::fromCallable(['A', 'test'])();
16 Closure::fromCallable(['B', 'test'])();
/php-src/
H A Dconfigure.ac97 if test $? -ne 0 ; then
247 if test "${with_pic+set}" != "set" || test "$with_pic" = "no"; then
353 if test -d /usr/pkg/include && test -d /usr/pkg/lib; then
834 …if test "$gcc_ccache" = "yes" && (test -z "$CCACHE_DISABLE" || test "$CCACHE_DISABLE" != "1"); then
869 if test "$GCC" = "yes" || test "$ICC" = "yes"; then
1037 if test "$PHP_IPV6" != "no" && test "$ac_cv_ipv6_support" = yes; then
1161 …if test "$PHP_CGI" = "no" && test "$PHP_CLI" = "no" && test "$PHP_FPM" = "no" && test "$PHP_LITESP…
1176 if test -z "$PHP_MODULES" && test -z "$PHP_ZEND_EX"; then
1199 if test -z "$with_pear" && test "$enable_pear" = "no"; then
1684 if test "$PHP_PHAR" != "no" && test "$PHP_CLI" != "no"; then
[all …]

Completed in 42 milliseconds

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