VB.net

書式
文字列.Split(“,”c)

使用例

Module Module1 Sub Main() 'カンマを含む文字列変数の宣言 末尾が空文字 Dim target As String ...

Software

ダウンロード
提供元サイトからダウンロード
softpediaサイトからダウンロード
概要:
Free Ringtone Makerは3ステップで簡単に着信音を作ることができるソフトです。 ...

Node.js

書式
fs.appendFile(ファイル名, 内容, function (err)
使用例

var fs = require('fs');//ファイルを作成fs.appendFile('demo.txt', ' ...

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 { ...