PHP code example of maht0rz / jade

1. Go to this page and download the library: Download maht0rz/jade library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

maht0rz / jade example snippets

 echo ... 
 echo $something 
 $foo = "<script>"; 
 switch ($foo) 
 case 2 
 echo $foo 
 break; 
 case 5 
 break; 
 endswitch; 

	    $data = 40;
	    $data /= 2;
	    echo $data;
	  
 $foo = 'bar' 
 echo $foo 
 echo $foo 
 while (true): 
 endwhile;