PHP †
$xml = simplexml_load_file('hoge.xml');
var_dump($xml);
<?php
$array = array( "array1", "array2", "array3", "array4" );
?>
<?php
$DB_HOST = "localhost";
$DB_USER = "nuzou";
$DB_PASSWORD = "nuzoudb";
$DB_NAME = "nuzou_pw";
function db_connect()
{
global $DB_HOST, $DB_USER, $DB_PASSWORD, $DB_NAME;
$link = mysqli_connect($DB_HOST, $DB_USER, $DB_PASSWORD, $DB_NAME);
return $link;
}
function db_close($link)
{
mysqli_close($link);
}
?>
function utf8_to_sjis($utf8_string) {
return mb_convert_encoding($utf8_string,"SJIS","UTF-8");
}
function sjis_to_utf8($sjis_string) {
return mb_convert_encoding($sjis_string,"UTF-8","SJIS");
}
-
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=euc-jp" />
</head>
<body>
<input type="file" name="upload"/><br />
</form>
</body>
</html>
-
<?php
if( $_FILES )
{
$uploadfile = "/var/tmp/test/" . $filename;
move_uploaded_file( $_FILES['upload']['tmp_name'], $uploadfile );
}
?>
$proxy = array(
'http' => array(
'request_fulluri' => true,
),
);
$proxy_context = stream_context_create($proxy);
var_dump($raw);
Smarty †
$pdo = new PDO("odbc:DRIVER={SQL Server};UID=<USER_ID>;PWD=<PASSWORD>;DATABASE=<DB_NAME>;SERVER=<SERVER_NAME>\\<INSTANCE_NAME>"
, "<USER_ID>", "<PASSWORD>");