PHP code example of syrian-open-source / php-arabic-diff-for-human

1. Go to this page and download the library: Download syrian-open-source/php-arabic-diff-for-human 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/ */

    

syrian-open-source / php-arabic-diff-for-human example snippets


        $instance = (new ArabicDiffForHumans());
        $time = "2018-1-1";
        echo $instance->getFromDateString($time);
        // if the current date 2022-1-1 forexample, the result should be: "منذ 4 سنين"

        $instance = (new ArabicDiffForHumans());
        $time = "2018-1-1";
        echo $instance->get(strtotime($time));
        // if the current date 2022-1-1 forexample, the result should be: "منذ 4 سنين"