Software

書式
メソッド名(ByRef 変数名)
使用例

Module ModuleTest Sub Main() Dim y as Integer = 5 testFunc(y) Console.WriteLine(y) ...

Ubuntu 20.04

1.プロセスが使用するポートを表示
# lsof -i

2.ポート番号からプログラムを表示
形式 lsof -i:ポート番号

# lsof -i:80COMMAND PID USER FD TYPE ...

Java

説明
thisで自クラス内のメソッドやメンバ変数を呼びます。
クラスの定義

package com.arkgame.study;public class UserInfo { private String use ...

Kotlin

構文
var 変数名 : 型
使用例
var cftA: String = “testt”
var cftA: Char = ‘X’
var cf ...

Source

環境:
wamp、ubuntu

サンプルコード:
ファイル名前:email.class.php

Source

 

サンプルコード:

/**

* Multi-Upload
*
* Extends CodeIgniters native Upload class to add s ...

Source

サンプルコード:

class Request{
  //方法1 curl
public static function post($url, $post_data = ”, $timeout = ...

Oracle

書式
REVOKE システム権限名 FROM usrename;

使用例
1.権限を取り消す
REVOKE CREATE TABLE FROM TESTUSER;
REVOKE SELECT ...

PHP

書式
function 関数名(){
global $変数名;
}
$変数名 = 値1;

使用例

<?php//グローバル変数$tt = "110";//関数の定義functio ...

Html

説明
1.相対パス
このhtmlファイルがあるフォルダの配下のimgフォルダ内を指定しています。
先頭のドット(.)は必要です。ないとファイルがないというエラーになります。
形式
./path/ ...

PHP

書式
strstr(文字列, 検索する文字列);
strstrを使用して、、文字列の中に指定した文字列が含まれているかを判定します。

使用例

<?php$cftA = '国内初確認';$cftB ...

Swift

環境
Swift version 5.2.3

書式

var 変数1 : String = String.init(data: Data型変数, encoding: .utf8)!var 変数2 : Int = ...

PHP

書式
array_unshift(array &$array, mixed …$values): int
array_unshift() は、array の先頭に指定された要素を加えます。

Nginx

対象ファイル:nginx.conf
修正前
location/{
root html;
index index.html index.htm;
}

修正後
location/ ...

Linux

1.実行履歴の表示
#yum history list

2,実行履歴の詳細情報を表示
#yum history info

3.実行履歴を再度実行
#yum history redo ...

CSS

説明
:checked はラジオボタン、チェックボックス、オプションボタンの
中の要素がチェックされる場合cssを表示します。
htmlコード

<div> <input type="ch ...

PHP

書式
array_unshift(array &$array, mixed …$values): int
array_unshift() は、array の先頭に指定された要素を加えます。

jQuery

環境
jquery 3.6.0
Google Chrome 98.0.4758.102

書式
1.行を追加する
$(‘テーブルID名’).append(‘ ...