/PHP-5.5/ext/ldap/tests/ |
H A D | ldap_set_rebind_proc_basic.phpt | 26 $link = ldap_connect_and_bind($host, $port, $user, $passwd, $protocol_version); 27 var_dump(ldap_set_rebind_proc($link, "rebind_proc")); 28 var_dump(ldap_set_rebind_proc($link, ""));
|
/PHP-5.5/ext/sybase_ct/tests/ |
H A D | test_connection_caching.phpt | 22 resource(%d) of type (sybase-ct link) 23 resource(%d) of type (sybase-ct link) 24 resource(%d) of type (sybase-ct link)
|
H A D | test_query_nostore.phpt | 22 link varchar(255) null, 33 id, caption, author, link 69 ["link"]=> 81 ["link"]=> 93 ["link"]=>
|
/PHP-5.5/ext/mysql/tests/ |
H A D | mysql_get_host_info.phpt | 16 if (!is_string($info = mysql_get_host_info($link)) || ('' === $info)) 21 printf("[004] Host info for the default link and the specified link differ, [%d] %s\n", 33 if (!is_null($tmp = @mysql_get_host_info($link, "too many arguments"))) {
|
H A D | mysql_fetch_object.phpt | 13 $link = NULL; 18 if (false !== ($tmp = @mysql_fetch_object($link))) 22 if (!$res = mysql_query("SELECT id AS ID, label FROM test AS TEST ORDER BY id LIMIT 5", $link)) { 23 printf("[003] [%d] %s\n", mysql_errno($link), mysql_error($link)); 66 if (!$res = mysql_query("SELECT id AS ID, label FROM test AS TEST", $link)) { 67 printf("[009] [%d] %s\n", mysql_errno($link), mysql_error($link)); 77 mysql_close($link);
|
/PHP-5.5/ext/mysqli/tests/ |
H A D | mysqli_debug_mysqlnd_control_string.phpt | 26 function try_control_string($link, $control_string, $trace_file, $offset) { 38 if (!$res = mysqli_query($link, 'SELECT * FROM test')) { 42 mysqli_errno($link), 43 mysqli_error($link)); 65 $trace = try_control_string($link, 't:O,' . $trace_file, $trace_file, 10); 71 $trace = try_control_string($link, 't:O,' . $trace_file . ':T', $trace_file, 20); 80 $trace = try_control_string($link, 't:O,' . $trace_file . ':i', $trace_file, 30); 85 $trace = try_control_string($link, 't:O,' . $trace_file . ':L', $trace_file, 40); 101 $trace = try_control_string($link, 't,1:n:O,' . $trace_file, $trace_file, 70); 117 $trace = try_control_string($link, 'n:O,' . $trace_file, $trace_file, 80); [all …]
|
H A D | mysqli_fetch_object_no_constructor.phpt | 14 $link = NULL; 17 if (!$res = mysqli_query($link, "SELECT id AS ID, label FROM test AS TEST ORDER BY id LIMIT 5")) { 18 printf("[001] [%d] %s\n", mysqli_errno($link), mysqli_error($link)); 44 mysqli_close($link);
|
H A D | 048.phpt | 46 if (!$link = my_mysqli_connect($host, $user, $passwd, $db, $port, $socket)) 49 if (!mysqli_query($link, "DROP TABLE IF EXISTS test_fetch_null")) 50 printf("[c002] Cannot drop table, [%d] %s\n", mysqli_errno($link), mysqli_error($link)); 52 mysqli_close($link);
|
H A D | mysqli_field_tell.phpt | 14 $link = NULL; 19 if (!is_null($tmp = @mysqli_field_tell($link))) 23 if (!$res = mysqli_query($link, "SELECT id FROM test ORDER BY id LIMIT 1", MYSQLI_USE_RESULT)) { 24 printf("[003] [%d] %s\n", mysqli_errno($link), mysqli_error($link)); 53 mysqli_close($link);
|
H A D | mysqli_stmt_get_result_field_count.phpt | 16 if (!$stmt = mysqli_stmt_init($link)) 17 printf("[001] [%d] %s\n", mysqli_errno($link), mysqli_error($link)); 41 mysqli_close($link);
|
H A D | mysqli_debug_mysqlnd_only.phpt | 27 function try_control_string($link, $control_string, $trace_file, $offset) { 39 if (!$res = mysqli_query($link, 'SELECT * FROM test')) { 43 mysqli_errno($link), 44 mysqli_error($link)); 75 $trace = try_control_string($link, 't:m:O,' . $trace_file, $trace_file, 10); 97 $trace = try_control_string($link, 't:O,' . $trace_file, $trace_file, 20); 119 mysqli_close($link);
|
H A D | mysqli_stmt_num_rows.phpt | 14 $link = NULL; 19 if (!is_null($tmp = @mysqli_stmt_num_rows($link))) 24 if (!$stmt = mysqli_stmt_init($link)) 25 printf("[003] [%d] %s\n", mysqli_errno($link), mysqli_error($link)); 63 if ($res = mysqli_query($link, 'SELECT COUNT(id) AS num FROM test')) { 68 printf("[050] [%d] %s\n", mysqli_errno($link), mysqli_error($link)); 107 mysqli_close($link);
|
H A D | connect.inc | 93 $link = mysqli_init(); 94 if (!mysqli_real_connect($link, $host, $user, $passwd, $db, $port, $socket, $flags)) 95 $link = false; 97 $link = mysqli_connect($host, $user, $passwd, $db, $port, $socket); 100 return $link; 108 …function my_mysqli_real_connect($link, $host, $user, $passwd, $db, $port, $socket, $flags = 0, $en… 114 return mysqli_real_connect($link, $host, $user, $passwd, $db, $port, $socket, $flags); 132 function have_innodb($link) { 133 if (($res = $link->query("SHOW VARIABLES LIKE 'have_innodb'")) && 142 if ($res = $link->query("SHOW ENGINES")) {
|
H A D | mysqli_driver.phpt | 48 …if ($link = my_mysqli_connect($host, $user . 'unknown_really', $passwd . 'non_empty', $db, $port, … 51 mysqli_close($link); 77 if (!$link = my_mysqli_connect($host, $user, $passwd, $db, $port, $socket)) 79 mysqli_query($link, "NO_SQL"); 80 mysqli_close($link); 84 if (!$link = my_mysqli_connect($host, $user, $passwd, $db, $port, $socket)) 86 mysqli_query($link, "NO_SQL"); 87 mysqli_close($link);
|
H A D | mysqli_debug_append.phpt | 56 if (!$res = mysqli_query($link, 'SELECT * FROM test')) 57 printf("[007] [%d] %s\n", mysqli_errno($link), mysqli_error($link)); 68 if (!$res = mysqli_query($link, 'SELECT * FROM test')) 69 printf("[010] [%d] %s\n", mysqli_errno($link), mysqli_error($link)); 83 mysqli_close($link);
|
H A D | mysqli_embedded_connect.phpt | 13 $link = NULL; 18 if (!$link = mysqli_embedded_connect($db)) { 26 mysqli_close($link);
|
H A D | mysqli_fetch_field_direct_oo.phpt | 14 $link = NULL; 28 printf("[003] [%d] %s\n", mysqli_errno($link), mysqli_error($link)); 34 if (!is_null($tmp = @$res->fetch_field_direct($link))) 37 if (!is_null($tmp = @$res->fetch_field_direct($link, $link)))
|
H A D | mysqli_stmt_data_seek.phpt | 14 $link = NULL; 19 if (!is_null($tmp = @mysqli_stmt_data_seek($link))) 24 if (!$stmt = mysqli_stmt_init($link)) 25 printf("[003] [%d] %s\n", mysqli_errno($link), mysqli_error($link)); 81 mysqli_close($link);
|
H A D | mysqli_stmt_get_result2.phpt | 21 $link = NULL; 26 if (!is_null($tmp = @mysqli_stmt_get_result($link))) 31 if (!$stmt = mysqli_stmt_init($link)) 32 printf("[003] [%d] %s\n", mysqli_errno($link), mysqli_error($link)); 69 if (!($stmt = mysqli_stmt_init($link)) || 88 if (!($stmt = mysqli_stmt_init($link)) || 107 if (!($stmt = mysqli_stmt_init($link)) || 128 if (!($stmt = mysqli_stmt_init($link)) || 145 mysqli_close($link);
|
H A D | mysqli_explain_metadata.phpt | 17 if (!$res = mysqli_query($link, 'EXPLAIN SELECT t1.*, t2.* FROM test AS t1, test AS t2')) 18 printf("[001] [%d] %s\n", mysqli_errno($link), mysqli_error($link)); 25 mysqli_errno($link), mysqli_error($link)); 40 if (($tmp = mysqli_field_count($link)) !== $num_fields) { 66 $stmt = mysqli_stmt_init($link); 83 if (($tmp = mysqli_field_count($link)) !== $num_fields) { 154 mysqli_close($link);
|
/PHP-5.5/ext/standard/tests/file/ |
H A D | lstat_stat_variation20.phpt | 2 Test lstat() and stat() functions: usage variations - link names stored in array/object 12 Description: Gives information about a file or symbolic link 18 /* test for stats of link when their names are stored in object and array */ 26 // temp link 37 // link name stored in an object 40 // link name stored in side an array 47 echo "\n-- Testing lstat() on link name stored inside an object --\n"; 50 echo "\n-- Testing stat() on link name stored inside an array --\n"; 67 -- Testing lstat() on link name stored inside an object -- 123 -- Testing stat() on link name stored inside an array --
|
H A D | bug47767.phpt | 21 echo "Testing include_once using file symbolic link\n"; 31 echo "Testing include_once using directory symbolic link\n"; 47 Testing include_once using file symbolic link 49 Testing include_once using directory symbolic link
|
H A D | is_dir_variation2.phpt | 15 /* Testing is_dir() with dir, soft & hard link to dir, 16 and with file, soft & hard link to file */ 33 link($file_path."/is_dir_variation2", $file_path."/is_dir_variation2_link"); //Not permitted to cre… 50 link($file_path."/is_dir_variation2.tmp", $file_path."/is_dir_variation2_link.tmp"); 85 Warning: link(): %s in %s on line %d
|
/PHP-5.5/ext/standard/tests/network/ |
H A D | news.rss | 12 <link>http://php.net/</link> 23 <link>http://php.net/index.php#id2015-01-22-3</link>
|
/PHP-5.5/ext/session/tests/ |
H A D | bug36459.phpt | 25 style="font: normal 11pt Times New Roman">incorrect link</a><br /> 27 …u/adm/pages/?action=prev&rec_id=8&pid=2" style="font: normal 11pt Times New Roman">correct link</a> 38 style="font: normal 11pt Times New Roman">incorrect link</a><br /> 40 …ages/?action=prev&rec_id=8&pid=2&sid=%s" style="font: normal 11pt Times New Roman">correct link</a>
|