PHP

例1
<?php
$search_array = array(‘one’ => 2, ‘two’ => 5);
if (array_key_ex ...

PHP

PHPコード:
function Func_SQL_clean($value) {
$value = str_replace(“\\”, “”, $value);

PHP

PHPコード:
function isDigitfunc($paVal) {
if (preg_match(‘/^+$/’, $paVal)) {
//英数字の場合
return ...

PHP

1.sort ()
<?php
$cft_array=array(1,2,3,6,7,8,9,4,5);
sort($cft_array);
foreach($cft_array as $keys ...

PHP

1.array_splice()
<?php
$cft_array=array(
“chang”=>”shinagawa”,
“A ...

PHP

サンプル1
PHPコード:
$str = ‘changfat’;
$arr = str_split($str,2);

実行結果:
array(4) {
=&g ...

PHP

1.txtファイルに文字列を書く
$keys = range(1,999);
$file = fopen(‘demo_cft.txt’,”w”);
foreach ...

PHP

PHPコード:
function noHTMLTag($content)
{
$content = preg_replace(“/<a*>/i”,”, $cont ...

PHP

phpコード:
<?php
$pa = “abc defa
bcd ef”;
$pb= preg_replace(“/\t|a/”,”& ...

PHP

1.+演算子
$arrbh = array(‘key1’=>’value1’);
$arrbh = $arrbh + array(‘key2’ ...

PHP

1.bookgitemtblの作成
create table bookgitemtbl (
id number(16) not null,
name varchar2(30) not null,
pri ...

PHP

1.ストアドプロシージャ
create or replace package PKG_JITA_HU is
— Public type declarations
PKG_NAME varchar2( ...

PHP

phpコード:
$fh = fopen($path, “r+”);
if( flock($fh, lock_ex) ){
$cont_old=json_decode(fread($fh, ...

PHP

サンプルコード:
set_time_limit(1000);
function dirchk_iswriteableFunc($dir_path){
$dir_path=str_replace(‘\ ...

PHP

phpコード:
function html2text($str){
$str = preg_replace(“/<style .*?<\/style>/is”, “ ...

PHP

サンプルコード:
function encodeChk($file) {
$list = array(‘Shift_JIS’, ‘UTF-8’, ‘UTF-1 ...

PHP

サンプルコード
function fun_insert_sort($arr) {
$count = count($arr);
for ($i=1; $i<$count; $i++) {
for ( ...

PHP

サンプルコード
<?php
$var=350;

$int_options = array(
“options”=>array
(
“m ...