echo mb_detect_encoding();
↓
UTF-8,EUC-JP などなど
class X {
function __construct(){
…
}
}
class Y extends X {
function __construct(){
parent::__construct();
}
}
phpMyAdminで、データーベース
dtb_classcategory テーブルに
入力値を0(ゼロ)にしたデータを追加登録してみました。
————–
INSERT INTO `dtb_classcategory` (`classcategory_id`, `name`, `class_id`, `status`, `rank`, `creator_id`, `create_date`, `update_date`, `del_flg`) VALUES
(0, NULL, 0, NULL, 0, 0, ’0000-00-00 00:00:00′, NULL, 0);
————–
これで解決です。
Chrome ではソース表示の際URLをリクエストしているそう。
POSTデータは見ることができない・・・
vi .htaccess
AddType application/x-httpd-php .htm .html
http://www.designworkplan.com/design/symbol-signs.htm
This is a collection of 50 common used signage symbols, professional designed. The symbols signs are free of charge available as an OpenType font format, allowing you to easily add symbols & icons to your sign and wayfinding design. All the symbols have been designed & created by Sander Baumann and set to the proportions of a regular typeface, so you no longer need to copy/paste the symbols into your designs.
簡単なFLVコントロール方法:
—————————————
import fl.video.*;
//FLVビデオ設定
myFLVPlybk.source = “***.flv”
//タイマー毎画面を表示させ
myFLVPlybk.addASCuePoint(23, “ascp1″);
myFLVPlybk.addASCuePoint(83, “ascp2″);
myFLVPlybk.addEventListener(MetadataEvent.CUE_POINT, cuePointHandler);
function cuePointHandler(eventObject:MetadataEvent):void {
if (eventObject.info.name == “ascp1″) {
tar.gotoAndPlay(“s1″);
mySS = 1;
}
if (eventObject.info.name == “ascp2″) {
tar.gotoAndPlay(“s2″);
mySS = 1;
}
}
var mySS = 1;
stop();
//マウスクリックでビデオをスライドさせ
myFLVPlybk.addEventListener(MouseEvent.MOUSE_UP,function(e:Event):void{
mySS =0;
//trace(mySS);
});
myFLVPlybk.addEventListener(Event.ENTER_FRAME,function(e:Event):void{
//ビデオ再生タイム取得⇒変換
var my_str:String = int(myFLVPlybk.playheadTime).toString();
var my_array:Array = my_str.split(“.”);
//個別時間アクション設定
if(my_array[0] >= 83){
if(mySS == 0){
tar.gotoAndPlay(“s2″);
mySS = 1;
}
}
//個別時間アクション設定
if(my_array[0] >= 23 && my_array[0] <= 83){
if(mySS == 0){
tar.gotoAndPlay(“s1″);
mySS = 1;
}
}
if(my_array[0] <= 22){
tar.gotoAndStop(1);
//mySS = 1;
}
//タイマー表示
var timerMin:String = int(myFLVPlybk.playheadTime /60).toString();
if (int(timerMin) < 10) {
timerMin = ’0′+ timerMin;
}
var timerSec:String = int(myFLVPlybk.playheadTime%60).toString();
if (int(timerSec) < 10) {
timerSec = ’0′+ timerSec;
}else{
timerSec = timerSec;
}
timer.text = timerMin+’:'+timerSec;
});
//書き出し形式はVer10で動作が安定