PHP

1.テーブルを作成
CREATE TABLE `upload` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`type` varchar(20) NOT N ...

PHP

1.Laravel基本的ルーティング:

//GETルーティング
Route::get(‘example/test3’, function(){

return ‘htt ...

PHP

1.XHProfをダウンロード
wget

2.XHProfをコンパイルしてインストール
tar zxf xhprof-0.9.2.tgz
cd xhprof-0.9.2/extension/

PHP

PHPコード:
<?php
$db = new PDO(‘sqlite:startnews24_test.sqlite’);
if ($db){
echo ‘O ...

PHP

書式
$_POST
使用例

1.phpコード$usr = $_POST;function funcA($target){ return htmlspecialchars($target, ENT_QUOTES, ...

PHP

インストール方法:
1.composerモジュールをダウンロード
sudo curl -sS | sudo php -d detect_unicode=Off

2.ファイルのパーミッションを変更

PHP

1.PHPの拡張モジュールをインストール
yum install gcc
yum install libxml2-devel curl-devel libjpeg libjpeg-devel libpng-devel ...

PHP

1.PHPソースパッケージを解凍
tar xvf php-5.3.5.tar.bz2
cd php-5.3.5

2.phpizeを実行
cd ext/ftp
$PREFIX/php/bin/ ...

PHP

1.PHPコード:
class Math {
const num=3.14;

public function showNum(){
return self::num;
}
} ...

PHP

1.PHPのmongoモジュールのコンパイル、インストール
# wget
# tar zxvf mongo-1.5.2.tgz
# cd mongo-1.5.2
#/usr/bin/phpize ...

PHP

PHPコード:
echo $fileddata;
if($fileddata){
$fileddata = implode(‘|||’,$fileddata);
}
ec ...

PHP

PHPコード:
if( file_exists( $path ) )
{
$body = file_get_contents($path);
echo $body ;//ファイルの内容を出力
} ...

PHP

phpコード
<?
$file_name=”startnews24.txt”;
echo $file_name.”
“;
$fp=fopen ...

PHP

PHPコード:
<?php
define( ‘NL’, “\n” );  //NL-newline
define( ‘TB’, &# ...

PHP

PHPの正規表現式のコード:
$email_reg = ‘/+**@+**(?:{1}{2,4})+/’;
$url_reg = ‘/<a*?href=”(http ...

PHP

PHPの処理定義関数:
<?php

function imageResizer($url, $width, $height) {

header(‘Content-type: image ...

PHP

PHPコード:
public function downloads($name){
$name_tmp = explode(“_”,$name);
$type = $name_tmp; ...

PHP

PHPコード:
function getfilecounts($ff){

$dir = ‘./’.$ff;
$handle = opendir($dir);
$i = 0; ...