PHP code example of lukaswhite / auto-no-follow

1. Go to this page and download the library: Download lukaswhite/auto-no-follow 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/ */

    

lukaswhite / auto-no-follow example snippets


$processor = new \Lukaswhite\AutoNoFollow\Processor();

$processor->setCurrentHost('example.com');    

$html = $processor->addLinks('<p>Check out our <a href="http://example.com">affordable web design services</a>!</p>');

public function addLinks($html, $whitelist = array(), $ignoreRelative = true)

$html = $processor->addLinks(
  '<p>Check out our <a href="http://example.com">affordable web design services</a>!</p>'
  [
  	'example.com'
  ]
);

$html = $processor->addLinks(
  '<p>Check out the <a href="/about">about</a> page</p>'
  [],
  TRUE
);