Source

<?php
header(“Content-type:text/html;charset=utf-8″);
function getRandPass($length = 6){
$ ...

Source

1.insert()方法
db.inventory.insert( { _id: 10, type: “misc”, item: “card”, qty: 15 } ) ...

Source

 1.すべてのドキュメントを削除

db.inventory.remove({})

2.条件に一致するドキュメントを削除
db.inventory.remove( { type : “food ...

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が再起動 ...

Source

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

Source

サンプルコード:

<?php

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

function traversal ...

Source

サンプルコード:

$row=urlencode(preg_replace("/(\s|\&nbsp\;| |\xc2\xa0)/","",$row));

Source

サンプルコード:

function find_all_dir( $dir,$research=array(), $replace=array()){
//ディレクトリ内のすべてのファイルを見つける
$dh ...

Source

function filtration_symbol($tt){//句読点をフィルタ
$str=array(“,”,””);
$tt=str_replace($str,& ...

Source

–sequenceを作成
create sequence seq_on_test
increment by 1
start with 1
nomaxvalue
nocycle ...

Source

//sessionで統計
if($_SESSION==””){//判断$_SESSION==””的值是否为空,其中的temp为自定义的变量
if(($fp=fopen(& ...