⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 001.phpt

📁 linux下安装不上mysql5与php5的可用此关联
💻 PHPT
字号:
--TEST--mysqli connect--SKIPIF--<?php require_once('skipif.inc'); ?><?php require_once('skipifemb.inc'); ?>--FILE--<?php	include "connect.inc";	$test = "";	/*** test mysqli_connect localhost:port ***/	$link = mysqli_connect($host, $user, $passwd, "", $port, $socket);	$test .= ($link) ? "1" : "0";	mysqli_close($link);	/*** test mysqli_real_connect ***/	$link = mysqli_init();		$test.= (mysqli_real_connect($link, $host, $user, $passwd, "", $port, $socket) ) 		? "1" : "0";	mysqli_close($link);	/*** test mysqli_real_connect with db ***/	$link = mysqli_init();		$test .= (mysqli_real_connect($link, $host, $user, $passwd, $db, $port, $socket)) 		? "1" : "0";	mysqli_close($link);	/*** test mysqli_real_connect with port ***/	$link = mysqli_init();		$test .= (mysqli_real_connect($link, $host, $user, $passwd, $db, 3306, $socket))		? "1":"0";	mysqli_close($link);	/*** test mysqli_real_connect compressed ***/	/*	$link = mysqli_init();		$test .= (mysqli_real_connect($link, $host, $user, $passwd, $db, $port, $socket, MYSQLI_CLIENT_COMPRESS)) 		? "1" : "0";	mysqli_close($link);  */	/* todo ssl connections */	var_dump($test);?>--EXPECTF--%s(4) "1111"

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -