PHP ERROR Reporting Get link Facebook X Pinterest Email Other Apps May 16, 2021 ini_set('display_errors', 1); ini_set('display_startup_errors', 1); error_reporting(E_ALL); 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