Home
last modified time | relevance | path

Searched refs:user (Results 26 – 50 of 844) sorted by relevance

12345678910>>...34

/PHP-8.0/tests/output/
H A Dflush_basic_001.phpt12 // Ensure user buffers are not flushed by flush()
14 echo "Inside a user buffer\n";
18 echo "Outside of any user buffers\n";
24 Outside of any user buffers
/PHP-8.0/ext/reflection/tests/
H A Dtraits001.phpt26 Trait [ <user> trait Foo ] {
42 Method [ <user> public method someMethod ] {
47 Class [ <user> class Bar ] {
63 Method [ <user> public method someOtherMethod ] {
67 Method [ <user> public method someMethod ] {
H A Dbug45765.phpt30 Object of class [ <user> class foo extends foo2 ] {
50 Method [ <user> public method test ] {
58 Method [ <user> public method test2 ] {
66 Method [ <user> public method test3 ] {
74 Method [ <user> public method test4 ] {
/PHP-8.0/ext/mysqli/tests/
H A Dmysqli_connect_twice.phpt12 if (!$link = my_mysqli_connect($host, $user, $passwd, $db, $port, $socket))
13 …printf("[001] Cannot connect to the server using host=%s, user=%s, passwd=***, dbname=%s, port=%s,…
14 $host, $user, $db, $port, $socket);
19 if (true !== ($tmp = my_mysqli_real_connect($link, $host, $user, $passwd, $db, $port, $socket)))
37 if (!$link = new my_mysqli($host, $user, $passwd, $db, $port, $socket))
39 $host, $user, $db, $port, $socket);
44 if (true !== ($tmp = $link->real_connect($host, $user, $passwd, $db, $port, $socket)))
62 if (NULL !== ($tmp = $link->connect($host, $user, $passwd, $db, $port, $socket)))
65 if (!$link = mysqli_connect($host, $user, $passwd, $db, $port, $socket))
67 $host, $user, $db, $port, $socket);
[all …]
H A Dmysqli_connect_error.phpt22 if (!$link = my_mysqli_connect($host, $user, $passwd, $db, $port, $socket))
23 …printf("[002] Cannot connect to the server using host=%s, user=%s, passwd=***, dbname=%s, port=%s,…
24 $host, $user, $db, $port, $socket);
31 …if ($link = @my_mysqli_connect($host, $user . 'unknown_really', $passwd . 'non_empty', $db, $port,…
32 …printf("[003] Connect to the server should fail using host=%s, user=%s, passwd=***non_empty, dbnam…
33 $host, $user . 'unknown_really', $db, $port, $socket);
H A Dmysqli_connect_oo.phpt19 $host, $user . 'unknown_really', $db, $port, $socket);
24 // Run the following tests without an anoynmous MySQL user and use a password for the test user!
33 …if (!is_object($mysqli = new mysqli($host, $user, $passwd, $db)) || (0 !== mysqli_connect_errno())…
40 if (!is_object($mysqli = new mysqli($host, $user)) || (0 !== mysqli_connect_errno())) {
46 ini_set('mysqli.default_user', $user);
93 $host, $user . 'unknown_really', $db, $port, $socket);
101 $mysqli = new mysqli($host, $user, $passwd, $db, $port);
110 $mysqli = new mysqli($host, $user, $passwd, $db);
119 $mysqli = new mysqli($host, $user);
126 ini_set('mysqli.default_user', $user);
[all …]
H A Dbug74547.phpt14 if (!$link = my_mysqli_connect($host, $user, $passwd, $db, $port, $socket))
15 …printf("[001] Cannot connect to the server using host=%s, user=%s, passwd=***, dbname=%s, port=%s,…
16 $host, $user, $db, $port, $socket);
18 var_dump(mysqli_change_user($link, $user, $passwd, NULL));
H A Dmysqli_real_connect.phpt18 if (!mysqli_real_connect($link, $host, $user, $passwd, $db, $port, $socket))
20 $host, $user, $db, $port, $socket);
27 …o the server using host=%s, user=%s, passwd=***non_empty, dbname=%s, port=%s, socket=%s\n", gettyp…
29 // Run the following tests without an anoynmous MySQL user and use a password for the test user!
31 if (!mysqli_real_connect($link, $host, $user, $passwd, $db, $port)) {
40 if (!mysqli_real_connect($link, $host, $user, $passwd, $db)) {
49 if (!mysqli_real_connect($link, $host, $user)) {
57 ini_set('mysqli.default_user', $user);
76 if (!mysqli_real_connect($link, $host, $user, $passwd, $db, $port, $socket, 65536))
95 if (!mysqli_real_connect($link, $host, $user, $passwd, $db, $port, $socket, 128))
[all …]
H A Dmysqli_real_connect_pconn.phpt23 if (!mysqli_real_connect($link, $host, $user, $passwd, $db, $port, $socket))
25 $host, $user, $db, $port, $socket);
32 …o the server using host=%s, user=%s, passwd=***non_empty, dbname=%s, port=%s, socket=%s\n", gettyp…
34 // Run the following tests without an anoynmous MySQL user and use a password for the test user!
36 if (!mysqli_real_connect($link, $host, $user, $passwd, $db, $port)) {
45 if (!mysqli_real_connect($link, $host, $user, $passwd, $db)) {
54 if (!mysqli_real_connect($link, $host, $user)) {
62 ini_set('mysqli.default_user', $user);
81 if (!mysqli_real_connect($link, $host, $user, $passwd, $db, $port, $socket, 65536))
100 if (!mysqli_real_connect($link, $host, $user, $passwd, $db, $port, $socket, 128))
[all …]
H A D001.phpt15 $link = my_mysqli_connect($host, $user, $passwd, "", $port, $socket);
21 $test.= (my_mysqli_real_connect($link, $host, $user, $passwd, "", $port, $socket) )
27 $test .= (my_mysqli_real_connect($link, $host, $user, $passwd, $db, $port, $socket))
33 $test .= (my_mysqli_real_connect($link, $host, $user, $passwd, $db, $port, $socket))
42 if (!my_mysqli_real_connect($link, $host, $user, $passwd, $db, $port, $socket))
51 …$test .= (my_mysqli_real_connect($link, $host, $user, $passwd, $db, $port, $socket, MYSQLI_CLIENT_…
H A Dmysqli_connect_errno.phpt22 if (!$link = my_mysqli_connect($host, $user, $passwd, $db, $port, $socket))
23 …printf("[002] Cannot connect to the server using host=%s, user=%s, passwd=***, dbname=%s, port=%s,…
24 $host, $user, $db, $port, $socket);
31 …$link = @my_mysqli_connect($host, $user . 'unknown_really', $passwd . 'non_empty', $db, $port, $so…
33 …printf("[004] Connect to the server should fail using host=%s, user=%s, passwd=***non_empty, dbnam…
34 … $host, $user . 'unknown_really', $db, $port, $socket, gettype($link), var_export($link, true));
H A Dbug29311.phpt15 global $host, $user, $passwd, $db, $port, $socket;
16 parent::__construct($host, $user, $passwd, $db, $port, $socket);
24 global $host, $user, $passwd, $db, $port, $socket;
25 $this->connect($host, $user, $passwd, $db, $port, $socket);
36 $foo[2] = new mysql3($host, $user, $passwd, $db, $port, $socket);
H A Dmysqli_pconn_reuse.phpt5 die("skip TODO - we need to add a user level way to check if CHANGE_USER gets called by pconnect");
19 if (!$link1 = my_mysqli_connect($host, $user, $passwd, $db, $port, $socket)) {
20 …printf("[001] Cannot connect to the server using host=%s, user=%s, passwd=***, dbname=%s, port=%s,…
21 $host, $user, $db, $port, $socket, mysqli_connect_errno(), mysqli_connect_error());
24 …printf("[002] Cannot set user variable to check if we got the same persistent connection, [%d] %s\…
27 if (!$link2 = my_mysqli_connect($host, $user, $passwd, $db, $port, $socket)) {
28 …printf("[003] Cannot connect to the server using host=%s, user=%s, passwd=***, dbname=%s, port=%s,…
29 $host, $user, $db, $port, $socket, mysqli_connect_errno(), mysqli_connect_error());
49 …printf("[006] Cannot set user variable to check if we got the same persistent connection, [%d] %s\…
62 if (!$link2 = my_mysqli_connect($host, $user, $passwd, $db, $port, $socket)) {
[all …]
H A Dmysqli_get_connection_stats_off.phpt19 if (!$link = my_mysqli_connect($host, $user, $passwd, $db, $port, $socket)) {
20 …printf("[001] Cannot connect to the server using host=%s, user=%s, passwd=***, dbname=%s, port=%s,…
21 $host, $user, $db, $port, $socket);
30 if (!$link = my_mysqli_connect($host, $user, $passwd, $db, $port, $socket)) {
31 …printf("[003] Cannot connect to the server using host=%s, user=%s, passwd=***, dbname=%s, port=%s,…
32 $host, $user, $db, $port, $socket);
/PHP-8.0/ext/ldap/tests/
H A Dldap_mod_replace_basic.phpt13 $link = ldap_connect_and_bind($host, $port, $user, $passwd, $protocol_version);
17 "description" => "user X"
24 ldap_search($link, "$base", "(description=user X)", array("description"))
32 $link = ldap_connect_and_bind($host, $port, $user, $passwd, $protocol_version);
48 string(6) "user X"
H A Dldap_mod_del_basic.phpt13 $link = ldap_connect_and_bind($host, $port, $user, $passwd, $protocol_version);
17 "description" => "user A"
24 ldap_search($link, "$base", "(description=user A)")
32 $link = ldap_connect_and_bind($host, $port, $user, $passwd, $protocol_version);
/PHP-8.0/ext/oci8/tests/
H A Dconnect_with_charset_001.phpt10 var_dump($c1 = oci_connect($user, $password, $dbase));
11 var_dump($c2 = oci_connect($user, $password, $dbase, ""));
12 var_dump($c3 = oci_connect($user, $password, $dbase, "blah"));
13 var_dump($c4 = oci_connect($user, $password, $dbase, "obviously wrong"));
17 var_dump($c5 = oci_connect($user, $password, $dbase, "US7ASCII"));
18 var_dump($c6 = oci_connect($user, $password, $dbase, "UTF8"));
H A Dconnect.inc6 $c = @oci_connect($user, $password, $dbase);
9 $c = @oci_connect($user, $password);
14 …trigger_error("connect.inc: Failed to connect as '$user' to '$dbase': ". $m['message'], E_USER_ERR…
H A Dconnect_1.phpt11 var_dump($c1 = oci_pconnect($user, $password, $dbase));
14 var_dump($c1 = oci_pconnect($user, $password));
18 var_dump($c2 = oci_new_connect($user, $password, $dbase));
21 var_dump($c2 = oci_new_connect($user, $password));
H A Ddrcp_scope3.phpt21 $c = oci_new_connect($user,$password,$dbase);
26 function1($user,$password,$dbase);
29 function2($user,$password,$dbase);
33 function function1($user,$password,$dbase)
35 var_dump($c = oci_pconnect($user,$password,$dbase));
41 function function2($user,$password,$dbase)
43 var_dump($c = oci_pconnect($user,$password,$dbase));
H A Ddrcp_scope4.phpt24 $c = oci_new_connect($user,$password,$dbase);
29 function1($user,$password,$dbase);
32 function2($user,$password,$dbase);
36 function function1($user,$password,$dbase)
38 var_dump($c = oci_pconnect($user,$password,$dbase));
44 function function2($user,$password,$dbase)
46 var_dump($c = oci_pconnect($user,$password,$dbase));
/PHP-8.0/ext/odbc/tests/
H A Dconfig.inc7 $user = getenv("ODBC_TEST_USER");
13 if (false === $user) {
14 $user = 'root';
/PHP-8.0/ext/session/
H A Dmod_user.c22 PS_MOD_UPDATE_TIMESTAMP(user)
80 PS_OPEN_FUNC(user) in PS_OPEN_FUNC() argument
109 PS_CLOSE_FUNC(user) in PS_CLOSE_FUNC() argument
137 PS_READ_FUNC(user) in PS_READ_FUNC() argument
157 PS_WRITE_FUNC(user) in PS_WRITE_FUNC() argument
170 PS_DESTROY_FUNC(user) in PS_DESTROY_FUNC() argument
182 PS_GC_FUNC(user) in PS_GC_FUNC() argument
203 PS_CREATE_SID_FUNC(user) in PS_CREATE_SID_FUNC() argument
234 PS_VALIDATE_SID_FUNC(user) in PS_VALIDATE_SID_FUNC() argument
252 PS_UPDATE_TIMESTAMP_FUNC(user) in PS_UPDATE_TIMESTAMP_FUNC() argument
/PHP-8.0/ext/session/tests/
H A Derror_when_setting_save_handler_ini_setting_in_runtime.phpt2 Error when setting session.save_handler to user via ini_set
9 ini_set('session.save_handler', 'user');
12 Warning: ini_set(): Session save handler "user" cannot be set by ini_set() in %s on line %d
H A Dbug60860.phpt2 Bug #60860 (session.save_handler=user without defined function core dumps)
8 session.save_handler=user
18 Fatal error: PHP Startup: Session save handler "user" cannot be set by ini_set() in Unknown on line…

Completed in 32 milliseconds

12345678910>>...34