Use date_timezone_set to set 2017/10/24 00:00:00 in timezone Asia/Tokyo.
$date = '2017-10-24';
$timezone = 'Asia/Tokyo';
$tokyoTime = date_timezone_set(new DateTime($date), new DateTimeZone($timezone));
echo $tokyoTime;
If $date is null, $tokyoTime will be the time of right now in Tokyo.
Set $tokyoTime to null when $date is null.
$tokyoTime = empty($date) ? '' : date_timezone_set(new DateTime($date), new DateTimeZone($timezone));
Set format
$tokyoTime = empty($date) ? '' : date_format(date_timezone_set(new DateTime($date), new DateTimeZone($timezone)), 'Ymd H:i');
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
When you uninstall 360 security software, there are something need to delete manually. Like full scan service.
360 security software will register full scan under name of microsoft Co, not 360 XXX.
How to check?
start > run > input "msconfig" and enter > tab [service]
Then you may find it as "360 杀毒全盘扫描辅助服务"
How to delete?
start > run > input "regedit" and enter > navigate to HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services > find it and right click to delete
It may be name as "scan". HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services\scan
<Files ~ "^.*"> # to all files/すべでのファイルに対する
Deny from all # forbid access/すべで禁止
</Files>
<Files ~ "^index\.php|css|js|.*\.png|.*\.jpg|.*\.gif"> # the kind of files/ファイルの種類
Allow from all # allow access/全部許可する
# Allow from [ip] # allow from special ip or other/特定なIPなどからのみ許可
</Files>
In this way, you can still use include/fopen to get the css/js/png in php.
Try using VirtualBox to setup a 64bits Linux server, but there's an error said it can't support 64bits OS but 32bits. In VirtualBox system settings, only 32bits OSs are availabled.
Solution: Enable the virtualization technology in motherboard BIOS.
Example: hp notebook
Before boot OS > Key[Esc] > BIOS setup > Advanced > check virtualization.
I happened to an issue that js function is working in Chrome, Firefox and IE's debug mode. ONLY IN DEBUG MODE.
In stackoverflow, most answer are "Don't use 'console.log'". Because console object exists in scope only in debug mode after IE9.
Or use codes likes below to avoid console's problem.
if(!('console' in window)){
window.console ={};
window.console.log=function(string){
return string;
};
}
But it's not working on my issue, and try to catch the error is non-help at all.
Open and view the source
Change the .jar to .zip, click yes to the warning message, then you can open it as a zip file.
Execute by command line: java -jar fileName.jar
Need runtime environment
Blogger already has some share buttons like "google+", "twitter"... and maybe you want to share to Tumblr or Line.
To add Tumblr or Line share button, you need to edit blogger's template.
In template | edit html
Search "<b:includable id='shareButtons' var='post'>"
Then add the code inside this b:includable
Tumblr
<a class="tumblr-share-button" href="https://www.tumblr.com/share"></a>
Add the script before </body>
<script id="tumblr-js" async src="https://assets.tumblr.com/share-button.js"></script>
show as:
Line
<a expr:href='"http://line.naver.jp/R/msg/text/?" + data:post.title + "%0D%0A" + data:post.url + ""'> <img alt='LINEで送る' height='20px' src='https://media.line.me/img/button/ja/20x20.png' width='20px'/></a>
show as:
Linkedin
<script data-counter='right' type='IN/Share'>var data-url = '<data:post.sharePostUrl/>';</script>
Add the script before </body>
<script src='//platform.linkedin.com/in.js' type='text/javascript'> lang: en_US</script>
Customize your ads' position.
<!-- show Ad if you set ads to show in your blogger -->
<b:if cond='data:post.includeAd'>
<div class='inline-ad'>
<data:adCode/>
</div>
</b:if>
<!-- show only when it is static page or item(post page) -->
<b:if cond='data:blog.pageType in {"static_page","item"}'>
<!-- your code -->
</b:if>
<!-- show only when it is index page -->
<b:if cond='data:blog.pageType == "index"'>
<!-- your code -->
</b:if>
<!-- show only when device is mobile -->
<b:if cond='data:blog.isMobile'>
<!-- your code -->
</b:if>
$("#id").on("drop dragover", function(e) {
var fm = document.getElementById('form');
var fd = new FormData(fm);
e.preventDefault();
if (e.type === "drop") {
var files = e.originalEvent.dataTransfer.files;
console.log(files);
if (files.length > 0) {
fd.append("file", files[0]);
// do something
}
}
return false;
});
Had a case which need to use daynamic SQL and execute immediate statement. Share and memo a solution.
Customer's Needs:
There're two tables, A and B.
1. Update some columns in table B
2. The name of columns which will be updated are saved in table A(colname)
3. The columns' new value are saved in table A(colvalue)
4. Before get data from table A, we don't know which column will be updated.
Method:
1. Get data from table A and put in an cursor.
2. Create a dynamic SQL
3. Execute dynamic SQL