PHP

PHPコード
/**
* IPアドレスを取得
* @return string
*/
function getClientIpAddr(){
$headers = array(̵ ...

PHP

PHPコード
<?php
$curl = curl_init();
$url = ‘
$data = array(
‘username’=> ...

PHP

phpコード:
function isImageFunc($fileName)
{
$file = fopen($fileName, “rb”);
$kdf = fread($f ...

PHP

サンプルコード

function get_http_response_code($theURL) {
$headers = get_headers($theURL);
return substr($head ...

PHP

JavaScriptコード
var jsonData = JSON.stringify(data).replace(/\s/g,”&nbsp;”);
var rowData =̶ ...

PHP

phpコード
public function servDownloadFileAction()
{
define(‘CFT_WEB_ROOT’,’
$file_nam ...

PHP

phpコード
$array = array(“PHP”, “Perl”, “Java”);
print_r(“Size 1: R ...

PHP

サンプルコード:
function object2Array($d) {
if (is_object($d)) {
//Gets the properties of the given object
/ ...

PHP

1.ステータスコードを出力(301)
header( “HTTP/1.1 301 Moved Permanently” ) ;
header( “Location: ) ; ...

PHP

1.文字列を”SJIS”から”EUC-JP”に変換する
$cft = “サンプルデータ”;
echo mb_convert_encoding($c ...

PHP

サンプルコード
<?php
//URLからホスト名を取得
preg_match(“/^(http:\/\/)?(+)/i”, “ $matches);
$hos ...

PHP

サンプルコード
function getMillisecond(){
list($s1,$s2)=explode(‘ ‘,microtime());
return (float)spri ...

PHP

1.str_replace()
$str = str_replace(array(“/r/n”, “/r”, “/n”), “”, ...

PHP

PHPコード:
<?php
$cookie_jar = tempnam(‘./tmp’,‘cookie’);
$ch = curl_init();
curl_setopt( ...

PHP

phpコード

class CftSessionHandler implements SessionHandlerInterface {
public $save_path;
public $session_ ...

PHP

サンプルコード

<?php
$chkIp= ‘xxx.xxx.xxx.xxx’;
if(preg_match(‘/^((?|1{2}|2|25).){3}(?|1{ ...

PHP

//base64 でデータをエンコード
public function safe_b64encode($string) {
$data = base64_encode($string);
$data = str ...

PHP

phpコード
<?php
setCookie(“name”,””,time()-60);

foreach($_COOKIE as $key=>$v ...