PHP code example of meirsadan / kirby-he

1. Go to this page and download the library: Download meirsadan/kirby-he 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/ */

    

meirsadan / kirby-he example snippets


return [
    'code' => 'he',
    // ...
    'slugs' => [
        'א' => 'a', 'ב' => 'b', 'ג' => 'g', 'ד' => 'd', 'ה' => 'h',
        'ו' => 'v', 'ז' => 'z', 'ח' => 'ch', 'ט' => 't', 'י' => 'y',
        'ך' => 'ch', 'כ' => 'ch', 'ל' => 'l', 'ם' => 'm', 'מ' => 'm',
        'ן' => 'n', 'נ' => 'n', 'ס' => 's', 'ע' => 'a', 'ף' => 'f',
        'פ' => 'p', 'ץ' => 'tz', 'צ' => 'tz', 'ק' => 'q', 'ר' => 'r',
        'ש' => 'sh', 'ת' => 't',
    ],
];