php formated Print statement Get link Facebook X Pinterest Email Other Apps July 09, 2021 $num = 5;$location = 'tree';$format = 'There are %d monkeys in the %s';echo sprintf($format, $num, $location); Get link Facebook X Pinterest Email Other Apps Comments
Linux command line search and replace string in all files May 17, 2021 String Find and replace (folders/sub folders) > grep -rl "old string" . | xargs sed -i 's/old string/new string/g' URL Find and replace (folders/sub folders) > grep -rl "www\.google\.com" . | xargs sed -i 's/www\.google\.com/www\.yahoo\.com/g' Find string > grep -iRl "search string" /path/lcoation Read more
JQuery - setTimeout July 09, 2021 set time out function. setTimeout(function(){ alert("Hello"); }, 3000); Read more
Comments
Post a Comment