CSS

書式
.クラス名:focus{xxx}
:focus は CSS の 擬似クラスで、フォーカスを持っている (フォームの入力のような) 要素を表します。普通はユーザーが要素をクリックやタップをしたり、キーボードの[タブ ...

Security

ダウンロード
提供元サイトからダウンロード
softpediaサイトからダウンロード

更新内容:

Enhanced detections are those that have been mod ...

CSS

説明
CSS の :active 疑似クラスは、ユーザーによってアクティブ化されている要素 (ボタンなど) を表します。マウスを使用する場合は、
「アクティブ化」とはふつう、第1ボタンを押し下げたときに始まります。 ...

Windows10

ダウンロード
提供元サイトからダウンロード
softpediaサイトからダウンロード

更新内容:

Updating of language files and some improvements. ...

Software

ダウンロード
提供元サイトからダウンロード
softpediaサイトからダウンロード

更新内容:

Audio Library: The “Add to AIMP’s playl ...

Development

サンプルコード:

<?php
//ファイル閲覧プログラム
error_reporting(0);
$pwd = empty($_GET) ? ‘./’ : $_GET; ...

Development

PHPコード:

$image_info = array();
$size = getimagesize(‘test20140715.jpg’, $info);
if(isset($i ...

Development

サンプルコード:

<?php
function encode_file_contents($filename) {
$type=strtolower(substr(strrchr($filename, ...

Development

1.利用メッソッド
array_key_search
array_multip
array_mean
array_rands
2.サンプルコード
<?php

$arra ...

Development

PHPコード:
function remove_xss($val) {
//remove all non-printable characters. CR(0a) and LF(0b) and TAB(9) are a ...

Development

サンプルコード:
function is_utf8($string){
return preg_match(‘%^(?:
# ASCII
| # non-overlong 2-byte ...

Development

PHPデータベースをバックアップするスクリプト
サンプルコード:
<?php
//データベースのバックアップ
$host = “localhost”;
$user ...

Development

サンプルコード:
<?php
mysql_connect(‘localhost’, ‘startnews24_test’, ‘StartNews24&# ...

Development

処理コード:
function substr($string, $length)
{
$i = 0;
$j = 0;

while($i < $length)
{
$ch ...

Development

1.ファイル名
piechart.cls.php
2.画像生成クラスのサンプルコード:
<?php
/*
* 円グラフ画像を生成
*/
class PieChart { ...

Development

サンプルコード:
<?php
//$dirファイル名 eg:admin/runtime
//ディレクトリ及びディレクトリのファイルを削除関数
function deldir($dir) { ...

Development

サンプルコード:

<?php

//機能:データベースの中のカラムとフォルダのファイルが一致するかどうかを判断する
//一致しない場合、ファイルを削除して、システム負荷を削減する
//$di ...

Development

<?php
//あるフォルダのすべてのファイルとフォルダを遍歴する
//方法1
$dir=”D:”;
static $dir_list =0;
static $fi ...