Source

エラーメッセージ下記:
Warning:session_start():open(/var/lib/php/session/sess_itqfqua1554rmkgcb8u89ujem5,O_RDWR)failed:Permi ...

Source

コード下記:
$ids=$_POST;
$ids = preg_replace(“/(\n)|(\s)|(\t)|(\’)|(‘)|(,)|(\.)/”,’, ...

Source

機能:ファイルはZIP形式に圧縮、またはRARアーカイブ。サフィックスがカスタマイズすることができる
使用方法:まずインスタンス化してパラメータを渡す。二つのパラメータ
最初のパラメータはファイルアドレスのArray ...

Source

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

サンプル:
//ライブラリファイルを読み込む
require_once ̵ ...

Source

#方法1:
$ch = curl_init(‘
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_exec($ch);
echo curl_ ...

Source

対策1 addslashes(メソッドを使う

//エスケープ文字を削除
function stripslashes_array($array) {
if (is_array($array)) { ...

Source

1.自動ロードオブジェクトはもっと便利
class ClassAutoloader {
public function __construct() {
spl_autoload_register(array($ ...

Source

重要な技術:

1.mysql_list_tables()を利用してデータベースにテーブル情報を取得、すべてのテーブルを一つ配列に格納する
2.「show create table テーブル名」でテーブル構成を取得 ...

Source

サンプルコード下記:

<?php
function check_wap() {
if (isset($_SERVER)) return true;
if (isset($_SERVER)) r ...

Source

1.crontabのインストール
yum instal crontab
説明
/sbin/service crond start//サービスが起動
/sbin/service crond stop//サ ...

Source

1.文字列を解析し、整数を返す
parseInt(5/2)
2.数字を四捨五入して整数に丸める
Math.ceil(5/2)
3.四捨五入
Math.round(5/2)
4.小数点以下 ...

Source

#include
#include
/**
* ランダムUUIDを作成
*
* @param buf – buffer to be filled with the uuid stri ...

Source

サンプルコード:
‘フォルダサイズを取得
‘Author = baiyang
‘Version = 1.0
‘Date = 09.08.08
&# ...

Source

user = “admin” ‘ルータ名
pass = “admin” ‘ルータパスワード
With CreateObject(“Ms ...

Source

cmdの実行パス
test = createobject(“Scripting.FileSystemObject”).GetFolder(“.”).Path
Wscrip ...

Source

修正ファイル

httpd.conf

 

修正内容

MaxRequestLen 10240000

Apacheが再起動

Source

サンプルコード下記:

<form id=”fm” method=”post” novalidate>
<div style=”heigh ...

Source

MySQLでストアドプロシージャを使ってみました。1つの要求だけで複数のSQLを実行できるため、ネットワークに対する負荷を軽減できる
サンプルコード下記:

delimiter $

  ...