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");
}
echo date("Y/m/t");
echo date("Y/m/d", mktime(0,0,0,date("m"),0,date("Y")) );
-
<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>");
$filename = 'hogehoge.jpg';
if (file_exists($filename)) {
} else {
}
$filedata = file_get_contents('hogehoge.txt');
fwrite($fp,"hogehoge");
fclose($fp);
$filedata = file_get_contents('hogehoge.txt');
foreach($file_line as $line) {
echo "1:" . $data1 . " / 2:" . $data2 . " / 3:" . $data3 ."\n";
}
foreach †
foreach ($array as $value) {
echo $value;
}
function †
-
function ($hoge, $fuga) {
return $hoge . $fuga;
}
-
function ($hoge, $fuga, &$hogefuga) {
$hogefuga = $hoge . $fuga;
}
$data = array(
array("id" => "1", "data" => "0"),
array("id" => "2", "data" => "200"),
array("id" => "2", "data" => "0"),
array("id" => "2", "data" => "200")
);
$tmp = array();
foreach($data as $key => $val){
if(!in_array($val,$tmp)){
$tmp[] = $val;
}
}
$data = $tmp;