PHP

1.max属性
<input name=”emp_seq” type=”number” max=”999″/>

2.maxとmin ...

PHP

phpコード
function loginfo($format) {
$args = func_get_args();
array_shift($args);
$d = debug_backtrace( ...

PHP

PHPコード
$servername=”172.17.1.200″;
$username=”root”;
$password=”123456̸ ...

PHP

PHPコード
function pdf2png($PDF, $PNG, $w=50, $h=50){
if(!extension_loaded(‘imagick’)){
return f ...

PHP

phpコード
<?php
$file = ‘demo.txt’;
$newfile = ‘/var/www/data/demo.txt’;

if ...

PHP

phpコード
$day1 = new DateTime(‘2017-03-24’);
$day2 = new DateTime(‘2017-05-17’);

...

PHP

phpコード
function xml2ArrFunc($xmlResource, $flag=true) {
if ($flag === true) {
$dom = new DOMDocument(); ...

PHP

1.mt_rand()
<?php
$tmp=array();
while(count($tmp)<5){
$tmp[]=mt_rand(1,20);
$tmp=array_uniq ...

PHP

1.libmemcachedのダウンロード
ダウンロード:
$wget -c
$tar -zxvf libmemcached-1.0.16.tar.gz
$cd libmemcached-1.0.16 ...

PHP

phpコード
public function utf8_unicode($str) {
$unicode = array();
$values = array();
$lookingFor = 1; ...

PHP

phpコード
function phpescapeFunc($str){
preg_match_all(“/.|+/”,$str,$newstr);
$ar = $newstr;

PHP

phpコード

fileDownloadFunc($_GET );

function fileDownloadFunc($file)
{
$file = “.//images// ...

PHP

1.cookieの設定方法1
setcookie(“user_id”,$user_info,86500);
setcookie(“username”,$user_info ...

PHP

phpコード
<?php
function pageLinks($html, $current_url = “”, $repath = false){
preg_match_all ...

PHP

PHPコード
<?php
function utf8Substr($str, $from, $len)
{
return preg_replace(‘#^(?:|+){0,’ ...

PHP

1.エンコード
function urlsafe_b64encode($string) {
$data = base64_encode($string);
$data = str_replace(array(& ...

PHP

PHPコード:
function CheckUtf8($str) {
return preg_match(‘%^(?:
# ASCII
| # non-overlong 2-byte ...

PHP

PHPコード
<?php
$image = ‘info.jpg’;
//Supports http if allow_url_fopen is enabled
$image ...