How to create snippets in sublime text editor We can add code short-codes or snippets in sublime text. For example we creating a echo '<pre>'; print_r($YOURARRAY); echo '</pre>'; exit; short code, after creating snippet we don't need to write whole line of code every time , we just need to type eche and then press tab button enter button , sublime text will auto generate that code for you. So here is the simple steps to create snippet to create own code shortcuts in sublime text. Go to Sublime Text Top Menu and click on Tools->New Snippet.A new file will open. Now paste the below code <snippet> <content><![CDATA[ echo '<pre>'; print_r(${1:ARRAY}); echo '</pre>'; exit; ]]></content> <description>PHP: Pretty print_r</description> <scope>source.php</scope> ...
PHP,WORDPRESS,CAKEPHP,JQUERY,PHP TUTORIALS,CAKEPHP TUTORIALS,JQUERY CODES, CSS CODES, HTML CODES,EXPO, React, React Native, Angular,OOPS ,PHP INTERVIEW QUESTIONS @shubham715