Development

1.ヘッダファイルに「sqlite3.h」を追加する

2.ライブラリファイルに libsqlite3.dylibを追加する

3.追加方法
プロジェクト名->->targets->Bui ...

Development

1.tm構造体
struct tm {

int
tm_sec;/* seconds after the minute */
int tm_min;
/* minutes after the ...

Development

同期および非同期スクリプト参考サンプルコード:

<div id=”output”></div>
<button onclick=”updateSyn ...

Development

1.JSP暗黙オブジェクトはいくつある

9個オブジェクト  out、request、response、session、pageContext、application、config、page、exception。

Development

サンプルコード:

public String getLocaleLanguage() {
Locale l = Locale.getDefault();
return String.format(̶ ...

Development

1.frameworks/base/core/res/res/values/config.xmlを修正

<!– Component name of the service providing networ ...

Development

サンプルのコード下記:

<?php
set_time_limit(0);
function quickSort($arr) {
if (count($arr) > 1) {/
$ ...

Development

 

//昇順
foreach($files as $file_num => $file) {
if(is_file($directory.$file)){
//$file = ico ...

Development

コマンド:

yum downgrade php*  //複数の実行することが可能です

Development

1.配列の定義

$items = array(

1 => array(‘id’ => 1, ‘pid’ => 0, ‘name ...

Development

1.データベースを作成、毎日ウェブライトのデータを保存
CREATE TABLE `line` (
`id` int(10) NOT NULL AUTO_INCREMENT,
`pv` int(10) DEFA ...

Development

コマンド:

sudo apt-get install php5-ldap;

sudo apt-get install php5-lasso;

Development

サンプルコード下記:

$dir = “D:\workspace”;

function list_file($dir = ‘.’){
$list = sca ...

Development

エラーメッセージ:

PHP Startup: Unable to load dynamic library

対策:修正ファイル:php.ini

 extension_dir は絶対パスを設定する

Development

マルチスレッドの書き込みに対処するためのPHPファイル書き込み方法。

php処理コード:

function file_write($file_name, $text, $mode=’a’ ...

Development

設定ファイル:

<?xml version=”1.0″ encoding=”UTF-8″?>

<project name=”${pr ...

Development

処理サンプルコード:

User user = new User();//idがないのでデタッチ状態である
session.save(user);//userを保存して永続的な状態である
user.getId ...

Development

サンプルコード下記:

package namespace;
import java.util.*;
class Student implements Comparable<Student>