PHP

書式
class 子クラス名 extends 親クラス名 {
public function オーバライドのメソッド名
使用例

<?phpclass User{//getMsgメソッド public ...

Excel VBA

書式
LenB(StrConv(文字列,vbFromUnicode))
使用例

Sub funcA() Dim nn As String nn = "test123" Debug.Print LenB(StrCo ...

Go言語

書式
strings.Join(文字列A,文字列B)
使用例

package main import ( "fmt" "strings") func main() { target := []string{"St ...

PHP

書式
parent::__construct(変数名)
使用例

<?php//親クラスclass User{ public $usrAddr; public function __construct($ad ...

C#

書式
Math.Floor(数値) 小数第一位を切り捨
使用例

using System;class Sample{ static void Main() {//小数第1位で切り捨て double cftA = ...

Network

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

更新内容:
トルコ語翻訳を追加しました

Source

phpからpostリクエスト三つ方法
curl、file_get_content、fsocketを利用してpostでデータを送信する

コード下記:

class Request{

public ...

Source

# php -r “echo \”PHP Command Line.\”;”
PHP Command Line.
#
#
# php -r “ ...

Source

サンプルコード:

function real_ip()
{
static $realip = NULL;

if ($realip !== NULL)
{
return $real ...

Source

サンプルコード:

<?php

class httpClient {

public $buffer = null;//buffer 戻る文字列を取得
public $referer = ...

Source

サンプルコード:

<?php
$id = “

$token = encrypt($id, ‘E’, ‘qingdou’);

...

Source

1.プラグインを初期化
<script type=”text/javascript” src=”js/jquery.js”></script>
& ...

Source

<?php
$test=0;
if($test==”){
echo ‘<br/>phpで0はnullです’;//出力
}
if($test= ...

Source

php.iniに下記の行を変更する
upload_max_filesize = 8m
memory_limit=128M
post_max_size=8M

apacheまたnginxが再起動 ...

Windows10

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

更新内容

新機能The new “Crop focus” plugin is now b ...

Security

サンプルコード:

<?php
/*
*/
class Health {
public static $status;

public function __cons

Source

<?php
session_start();
header(‘Content-Type:text/html;charset=UTF8’);
include_once(“ ...

Source

サンプルコード:

<?php

//ディレクトリトラバーサル
echo memory_get_usage() . “\n”;

function traversal ...