PHP code example of jedkirby / tweet-entity-linker

1. Go to this page and download the library: Download jedkirby/tweet-entity-linker 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/ */

    

jedkirby / tweet-entity-linker example snippets


$cashtags = [
  [
    'text' => 'AAPL'  
  ]
];
 php
$request = Api::get('https://api.twitter.com/1.1/statuses/show/123456');

$tweet = Tweet::make(
  $request['text'],
  $request['entities']['urls'],
  $request['entities']['user_mentions'],
  $request['entities']['hashtags'],
  $request['entities']['cashtags']
);
 php
$text = $tweet->linkify();
 php
$text = 'This notifies @jedkirby, with the hashtag #Awesome, and the URL https://t.co/Ed4omjYz.';
 php
$urls = [
  [
    'url'         => 'https://t.co/Ed4omjYz',
    'display_url' => 'https://jedkirby.com'
  ]
];
 php
$mentions = [
  [
    'screen_name' => 'jedkirby'
  ]
];
 php
$hashtags = [
  [
    'text' => 'Awesome'
  ]
];
 php
$tweet = Tweet::make(
  $text,
  $urls,
  $mentions,
  $hashtags,
  $cashtags
);

var_dump($tweet->linkify());