$this->db->where(); で指定した中身は、
$where = $this->db->ar_where;で取り出せます。
$where = $this->db->ar_where;で取り出せます。
$this->db->where("EXISTS (SELECT * FROM hoge WHERE name = '"
. $this->db->escape($name)
. "' AND fuga.hoge_id = hoge.id)",
NULL,
FALSE);
$ env x='() { :;}; echo vulnerable' bash -c "echo this is a test"
●古いファイルを削除するバッチファイルはこんな感じ:: cloud backup test by fastcopy :: copy echo off :: コマンド SET CMD_NAME=c:\tool\fastcopy211\fastcopy.exe :: バックアップ元 SET SRC_DIR=e:\backup :: バックアップ先 SET BACK_DIR=c:\z\DropBox\backupCloud\recent :: バックアップポイント SET BACKUP_POINT=-90D 90日以内をコピー %CMD_NAME% /cmd=diff /bufsize=512 /log /logfile=cplog.txt /from_date=%BACKUP_POINT% /auto_close /force_close /open_window %SRC_DIR% /to=%BACK_DIR% :END
:: delete echo off :: バックアップ先 SET BACK_DIR=c:\DropBox\backupCloud\recent :: 90日以前を削除 forfiles /p %BACK_DIR% /s /c "cmd /c if @isdir==FALSE del /s @path" /D -90 >bkdellog.txt :END