Created
June 2, 2011 05:05
-
-
Save kinopyo/1003964 to your computer and use it in GitHub Desktop.
MySQL/Oracle/Memcache/Memcached connection test code for PHP
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// memcache test code | |
$memcache = memcache_connect('127.0.0.1', 11211); | |
if ($memcache) { | |
$memcache->set("str_key", "String to store in memcached"); | |
var_dump($memcache->get('str_key')); | |
} | |
else { | |
echo "Connection to memcached failed"; | |
} | |
?> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// memcached test code | |
$memcached = new Memcached(); | |
$memcached->addServer( "localhost", 11211 ); | |
echo "Memcached version:"; | |
var_dump($memcached->getVersion()); | |
?> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// MySQL connection test code | |
$db_host = "localhost"; | |
$db_user = "root"; | |
$db_passwd = ""; | |
$db_name = "test"; | |
$db = mysql_connect($db_host,$db_user,$db_passwd); | |
mysql_select_db($db_name,$db); | |
$sql = "select * from test"; | |
$rs = mysql_query($sql, $db); | |
while ($items = mysql_fetch_assoc($rs)) { | |
foreach ($items as $key => $item) { | |
print_r($item); | |
} | |
} | |
mysql_close($db); | |
?> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Oracle connection test code | |
$username = "foo"; | |
$password = "bar"; | |
$connection_string = "host_name[:port]/service_name"; | |
$connection = oci_connect($username, $password, $connection_string); | |
if (!$connection) { | |
echo "Couldn't make a connection!"; | |
} else { | |
echo "connect!"; | |
} | |
exit; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment