Python

例1:
with open(“filename”) as f:
f.read()

例2
class closing(object):
def __init__(self, thing): ...

Android

Javaコード:
@SuppressWarnings(“deprecation”)
public static String IPAnalysis(Context context) {

Android

Javaコード

public static String getVersionNumber(Context context) {
String version = null;
//PackageManage ...

PHP

1.サーバー側
$exchannel = \Tang\Amqp\AmqpService::getService()->get()->getExchannel(‘demo_startnews24̵ ...

PHP

PHPコード:
<?php
header(‘HTTP/1.1 200 OK’);
header(‘HTTP/1.1 404 Not Found’);

JavaScript

1.参考コード
var http = require(‘http’);
http.createServer(function (req, res) {
res.writeHead(200 ...

JavaScript

TCP側参考コード:
var net = require(‘net’);
net.createServer(function (socket) {
socket.on(‘da ...

Python

Pythonコード:
# -*- coding:utf-8 -*-

import os
import pyinotify
from functions import *

WATCH_PA ...

shellscript

参考コード:
#/bin/bash
#ファイルパス
quepath=/var/spool/mqueue
#ファイル数
filenum=`ls $quepath|wc -l`
#ファイルを ...

PHP

phpコード
<?php
$json = ‘{“a”:1,”b”:2,”c”:3,”d”:4,̶ ...

PHP

PHPコード:
<?php
$mimetypes = array(
‘ez’ => ‘application/andrew-inset’,
& ...

PHP

phpコード:
<?php
$a = array(‘<foo>’,”‘bar'”,'”baz”‘, ...

Linux

修正方法
#vim/etc/selinux/config
修正前 ”SELINUX=enforcing”
修正後  ”SELINUX=disabled” ...

JavaScript

参考コード:
<!DOCTYPE html PUBLIC “-//W3C//DTD HTML 4.01 Transitional//EN” “
<html>

PHP

例1–unserialize関数
<?php
$string = ‘O:6:“Foostartnews24”:2:{s:3:“foo”;s:1:“1”;s:3:“startnews24”; ...

PHP

関数説明:
array split (string $pattern, string $string )
array explode ( string $separator, string $string ) ...

Linux

操作コマンド
rpm –import
wget -P/etc/yum.repos.d/
yum –enablerepo=webtatic update php

PHP

1.目的:
特定のかさばる変数(配列やオブジェクト)を使用しない場合、削除関数を利用する

2.実現方法
方法1 $varname=null;
方法2 unset($varname);

3 ...