PHP code example of hilalahmad / social-share

1. Go to this page and download the library: Download hilalahmad/social-share 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/ */

    

hilalahmad / social-share example snippets

bash
use Hilalahmad\SocialShare\SocialShare;

$socialShare = new SocialShare();

echo $socialShare->facebook(url);
echo $socialShare->whatsapp(url);
echo $socialShare->email(url);
echo $socialShare->sms($phoneNumber,$message);
echo $socialShare->linkedin($url);
echo $socialShare->pinterest($url,$image_url,$content);
echo $socialShare->reddit($url,$content);
echo $socialShare->tumblr($url,$title);
echo $socialShare->outlook($url,$subject,$body);
echo $socialShare->twitter($url,$text);