學術及資源的交流園地 ^_^

voip software

 

OS

  • freepbx
  • trixbox

 

SIP softphones

 

PC:

  • Zoiper
  • Yate - Yet Another Telephony Engine

 

Android:

asp

 


 

ODBC

 

<%
//~ coding: utf-8

 set conn = Server.CreateObject("ADODB.Connection")
 conn.ConnectionString = "DSN=MySQL"
 conn.Open

 set conn_module = Server.CreateObject("ADODB.Connection")
 conn_module.ConnectionString = "DSN=MySQL"
 conn_module.Open


 conn.execute "SET CHARACTER SET big5"
 conn_module.execute "SET CHARACTER SET big5"

'conn.close
%>

使用者資料來源名稱

系統資料來源名稱

 

Outlook

最後更新: 2019-09-19

目錄

 

php version

PHP 5.6

 

Constant scalar expressions

<?php
    const ONE = 1;
    const TWO = ONE * 2;
?>

=========================

Variadic functions via ..

<?php
function f($req, $opt = null, ...$params) {
    // $params is an array containing the remaining arguments.
    printf('$req: %d; $opt: %d; number of params: %d'."\n",
           $req, $opt, count($params));
}

f(1);
f(1, 2);
f(1, 2, 3);
?>

=========================

Argument unpacking via ...

RSS feed